Exemplo n.º 1
0
 public override void EnterA_list(DOTParser.A_listContext context)
 {
     OnRuleEnter(Rule.Alist, context.GetText());
     base.EnterA_list(context);
 }
 /// <summary>
 /// Exit a parse tree produced by <see cref="DOTParser.a_list"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitA_list([NotNull] DOTParser.A_listContext context)
 {
 }
Exemplo n.º 3
0
 public override void ExitA_list(DOTParser.A_listContext context)
 {
     base.ExitA_list(context);
 }
 /// <summary>
 /// Visit a parse tree produced by <see cref="DOTParser.a_list"/>.
 /// <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 VisitA_list([NotNull] DOTParser.A_listContext context)
 {
     return(VisitChildren(context));
 }