IsArrayArgumentExplicitlyProvided() public static method

public static IsArrayArgumentExplicitlyProvided ( IParameter parameters, Boo.Lang.Compiler.Ast.ExpressionCollection args ) : bool
parameters IParameter
args Boo.Lang.Compiler.Ast.ExpressionCollection
return bool
示例#1
0
 public override bool CheckVarArgsParameter(IParameter[] parameters, ExpressionCollection args) =>
 (!UnityCallableResolutionServiceModule.IsArrayArgumentExplicitlyProvided(parameters, args) ? base.CheckVarArgsParameter(parameters, args) : true);
示例#2
0
 public override bool ShouldExpandArgs(IMethod method, ExpressionCollection args) =>
 (!UnityCallableResolutionServiceModule.IsArrayArgumentExplicitlyProvided(method.GetParameters(), args) ? base.ShouldExpandArgs(method, args) : false);