Esempio n. 1
0
 public ProfilingATNSimulator(Parser parser)
     : base(parser, parser.Interpreter.atn)
 {
     optimize_ll1      = false;
     reportAmbiguities = true;
     numDecisions      = atn.decisionToState.Count;
     decisions         = new Antlr4.Runtime.Atn.DecisionInfo[numDecisions];
     for (int i = 0; i < numDecisions; i++)
     {
         decisions[i] = new Antlr4.Runtime.Atn.DecisionInfo(i);
     }
 }
Esempio n. 2
0
 public ProfilingATNSimulator(Parser parser)
     : base(parser, parser.Interpreter.atn)
 {
     optimize_ll1 = false;
     reportAmbiguities = true;
     numDecisions = atn.decisionToState.Count;
     decisions = new Antlr4.Runtime.Atn.DecisionInfo[numDecisions];
     for (int i = 0; i < numDecisions; i++)
     {
         decisions[i] = new Antlr4.Runtime.Atn.DecisionInfo(i);
     }
 }