コード例 #1
0
 public static Tile Call()
 {
     return(new Tile(typeof(FunctionCallNode),
                     new Tile[] { },
                     (regNode, node) => new[] {
         InstructionFactory.Call(node as FunctionCallNode)
     }
                     ));
 }