예제 #1
0
 internal JSFunctionCall(JSFunction f)
 {
     this.f = f;
     this.args = new JSArgs();
 }
예제 #2
0
 internal JSFunctionCall(JSFunction f, JSArgs args)
 {
     this.f = f;
     this.args = args;
 }
예제 #3
0
 protected JSFunction RegisterStatement(JSFunction statement)
 {
     JSDocumentFunction.Instance.Block.Add(statement);
     return statement;
 }