예제 #1
0
파일: ast.cs 프로젝트: bitdotgames/bhl
 static public AST_Tree block(this AST_FuncDecl n)
 {
     return(n.GetChildren()[1] as AST_Tree);
 }
예제 #2
0
파일: ast.cs 프로젝트: bitdotgames/bhl
 static public AST_Tree fparams(this AST_FuncDecl n)
 {
     return(n.GetChildren()[0] as AST_Tree);
 }