예제 #1
0
 public ASTParser(ASTListFactory factory)
 {
     Factory = factory;
 }
예제 #2
0
 public static ASTParserBuilder ASTNode(ASTListFactory factory, string pn) => new ASTParserBuilder(factory, new NameParserGetter(pn));
예제 #3
0
 public ASTParserBuilder(ASTListFactory factory, IParserGetter parserGetter)
 {
     Factory      = factory;
     ParserGetter = parserGetter;
 }
예제 #4
0
 // ASTParserBuilder
 public static ASTParserBuilder ASTNode(ASTListFactory factory, IParserGetter pg) => new ASTParserBuilder(factory, pg);