Ejemplo n.º 1
0
 public override void EnterBreakStatement([NotNull] CmanParser.BreakStatementContext context)
 {
     _nodes.Push(new ASTBreakStatementNode(context, _nodes.Peek()));
 }
Ejemplo n.º 2
0
 public ASTBreakStatementNode(CmanParser.BreakStatementContext context, ASTNode parent)
     : base(parent)
 {
     SetLocation(context);
 }