예제 #1
0
 public RuleSharpParserListener(ParserContext parserContext, RuleSet ruleSet)
 {
     _parserContext = parserContext;
     _ruleSet       = ruleSet;
 }
예제 #2
0
 public ExpressionParser(ParserContext parserContext, params Type[] contextTypes)
 {
     _parserContext = parserContext;
     _contextTypes.Push(contextTypes);
 }
예제 #3
0
 public PrimaryExpressionBuilder(ParserContext parserContext, IParseTree context)
 {
     _parserContext = parserContext;
     SetContext(context);
 }