예제 #1
0
 public MtFunctionObject(AstNode body, MtArgListForDecl arguments, ScriptThread thread)
 {
     _body   = body;
     _args   = arguments;
     _thread = thread;
 }
예제 #2
0
 public MtFunctionObject(AstNode body, MtArgListForDecl arguments) : this(body, arguments, null)
 {
 }