Example #1
0
 /// <summary>
 /// Prints the parse list for debugging information.
 /// </summary>
 public static void PrintParseList(iroParser.CompileUnitContext tree, iroParser parser)
 {
     //Printing parse tree.
     Console.WriteLine("ANTLR Parse Tree:");
     Console.WriteLine(tree.ToStringTree(parser));
     Console.WriteLine("-\nStatement Length: " + tree.block().Length);
     Console.WriteLine("");
 }
Example #2
0
        //Master compile unit visitor.
        public override IroVariable VisitCompileUnit([NotNull] iroParser.CompileUnitContext context)
        {
            foreach (var block in context.block())
            {
                VisitBlock(block);
            }

            return(null);
        }
Example #3
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="iroParser.compileUnit"/>.
 /// <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 VisitCompileUnit([NotNull] iroParser.CompileUnitContext context)
 {
     return(VisitChildren(context));
 }
Example #4
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="iroParser.compileUnit"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitCompileUnit([NotNull] iroParser.CompileUnitContext context)
 {
 }