public override GoToNode VisitConditionalInstruction(
     [NotNull] GoToParser.ConditionalInstructionContext context) =>
 new ConditionalInstructionNode(
     context.var.Text,
     context.label.Text,
     context.label.Line,
     // The target label's choosen because's the one maybe needed during sematic analysis
     context.label.Column);
Esempio n. 2
0
 /// <summary>
 /// Visit a parse tree produced by the <c>ConditionalInstruction</c>
 /// labeled alternative in <see cref="GoToParser.instruction"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitConditionalInstruction([NotNull] GoToParser.ConditionalInstructionContext context)
 {
     return(VisitChildren(context));
 }
Esempio n. 3
0
 /// <summary>
 /// Exit a parse tree produced by the <c>ConditionalInstruction</c>
 /// labeled alternative in <see cref="GoToParser.instruction"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitConditionalInstruction([NotNull] GoToParser.ConditionalInstructionContext context)
 {
 }