Beispiel #1
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="llangParser.globalVar"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitGlobalVar([NotNull] llangParser.GlobalVarContext context)
 {
 }
Beispiel #2
0
        public override ASTNode VisitGlobalVar([NotNull] llangParser.GlobalVarContext context)
        {
            VarDeclNode n = (VarDeclNode)Visit(context.varDeclStmt());

            return(new GlobalVarDefNode(n.name, n.rhs, n.Type, MakeSourceLoc(context)));
        }
Beispiel #3
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="llangParser.globalVar"/>.
 /// <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 VisitGlobalVar([NotNull] llangParser.GlobalVarContext context)
 {
     return(VisitChildren(context));
 }