示例#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);
 }