Exemplo n.º 1
0
 public string CheckNullPrint(ASTNode n, int depth)
 {
     return((n != null) ? n.Print(depth) : string.Empty);
 }
Exemplo n.º 2
0
 public void Run(AbstractSyntaxTree.ASTNode n)
 {
     n.Visit(this);
 }
Exemplo n.º 3
0
 public virtual void VisitNode(ASTNode n)
 {
 }