Exemple #1
0
 public override void ExitIterationstatement([NotNull] CPPLINTParser.IterationstatementContext context)
 {
     _stateStack.Pop();
 }
Exemple #2
0
 public override void EnterIterationstatement([NotNull] CPPLINTParser.IterationstatementContext context)
 {
     _stateStack.Push(new State {
         Type = StateType.Iteration, Token = context.type
     });
 }