Example #1
0
 internal FunctionCallElement(string name, ICollection <MethodInfo> methods, ArgumentList arguments) : base(name)
 {
     this.arguments = arguments;
     this.methods   = methods;
 }
Example #2
0
 public FunctionCallElement(string name, ArgumentList arguments) : base(name)
 {
     this.arguments = arguments;
 }