Root node in the abstract syntax tree. Has a static property, .Instance; that always contains the last parsed tree.
Inheritance: Node
コード例 #1
0
 public void ProcessSyntaxTree(While.AST.WhileProgram program)
 {
     program.Accept(this);
     Console.WriteLine();
     Console.WriteLine("Program after optmizations:");
     Console.WriteLine(program);
 }
コード例 #2
0
 public virtual void Visit(WhileProgram node)
 {
 }
コード例 #3
0
 public virtual void Visit(WhileProgram node)
 {
 }