Example #1
0
 public FunctionParameter(FunctionType[] types, string reference, FunctionParameterMatch match)
     : this(false)
 {
     this.types = types;
     if (String.IsNullOrEmpty(reference))
         reference = NoRefernece;
     this.reference = String.Intern(reference);
     this.match = match;
 }
Example #2
0
 public FunctionParameter(FunctionType[] types, FunctionParameterMatch match)
     : this(types, NoRefernece, match)
 {
 }