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