Exemplo n.º 1
0
 public override void ExitFun_IDs(lisp_gammarParser.Fun_IDsContext context)
 {        /*
           * string a = "";
           * foreach (var i in context.children)
           * {
           *     a += " " + i.GetText() +" ";
           * }
           * ClearCtx(context);
           * AddCtx(context, a);*/
     base.ExitFun_IDs(context);
 }
 /// <summary>
 /// Exit a parse tree produced by <see cref="lisp_gammarParser.fun_IDs"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitFun_IDs([NotNull] lisp_gammarParser.Fun_IDsContext context)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="lisp_gammarParser.fun_IDs"/>.
 /// <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 VisitFun_IDs([NotNull] lisp_gammarParser.Fun_IDsContext context)
 {
     return(VisitChildren(context));
 }