internal JSFunctionCall(JSFunction f) { this.f = f; this.args = new JSArgs(); }
internal JSFunctionCall(JSFunction f, JSArgs args) { this.f = f; this.args = args; }
protected JSFunction RegisterStatement(JSFunction statement) { JSDocumentFunction.Instance.Block.Add(statement); return statement; }