コード例 #1
0
ファイル: JSFunctionCall.cs プロジェクト: lieberkind/testrepo
 internal JSFunctionCall(JSFunction f)
 {
     this.f = f;
     this.args = new JSArgs();
 }
コード例 #2
0
ファイル: JSFunctionCall.cs プロジェクト: lieberkind/testrepo
 internal JSFunctionCall(JSFunction f, JSArgs args)
 {
     this.f = f;
     this.args = args;
 }
コード例 #3
0
ファイル: JSContext.cs プロジェクト: lieberkind/testrepo
 protected JSFunction RegisterStatement(JSFunction statement)
 {
     JSDocumentFunction.Instance.Block.Add(statement);
     return statement;
 }