예제 #1
0
 public SemanticParser(ParserContextBase <TestToken, char, long> context) : base(grammar.Value, context)
 {
 }
예제 #2
0
 public GrmParser(ParserContextBase <GrmNode, char, LineInfo> context) : base(grammar.Value.LalrTable, context)
 {
 }
예제 #3
0
 public ExpressionParser(ITestOutputHelper output, ParserContextBase <Token, char, long> context) : base(ExpressionLalrTable.Value, context)
 {
     this.output = output;
 }
예제 #4
0
 protected ParserBase(LalrTable table, ParserContextBase <TAstNode, TInput, TPosition> context)
 {
     this.table   = table;
     this.context = context;
 }