예제 #1
0
파일: ASTNode.cs 프로젝트: goric/cflat
 public string CheckNullPrint(ASTNode n, int depth)
 {
     return((n != null) ? n.Print(depth) : string.Empty);
 }
예제 #2
0
파일: ClassPass.cs 프로젝트: goric/cflat
 public void Run(AbstractSyntaxTree.ASTNode n)
 {
     n.Visit(this);
 }
예제 #3
0
 public virtual void VisitNode(ASTNode n)
 {
 }