コード例 #1
0
 /// <summary>
 /// Add a function call to this TSValue.
 /// </summary>
 /// <param name="functionName">The name of the function.</param>
 /// <param name="argumentListAction">An action that will be invoked to produce the arguments of the function call.</param>
 public virtual void FunctionCall(string functionName, Action <TSArgumentList> argumentListAction)
 {
     builder.FunctionCall(functionName, argumentListAction);
 }
コード例 #2
0
 public void FunctionCall(string functionName, Action <TSArgumentList> argumentListAction)
 {
     SetCurrentState(State.Statement);
     builder.FunctionCall(functionName, argumentListAction);
 }