Exemplo n.º 1
0
 void ASTVisitor.Accept(NodeBreak value)
 {
     Accept(value);
 }
Exemplo n.º 2
0
 internal void Accept(NodeBreak b)
 {
     builder.currentLineNumber = b.EndLine;
     builder.AddBreak(log, b.location, b.label);
     // Push null for now, since this is technically an expression we must add an element to the stack.
     builder.OpNull();
 }