From d2d7b985b21a23e9d1d72005e93701cd781f4320 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sat, 19 Jan 2019 14:15:17 +0100 Subject: [PATCH] We need access to FunctionParameters at binding in other libraries --- .../Binder/VariableSymbols/InternalFunctionVariableSymbol.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Upsilon/Binder/VariableSymbols/InternalFunctionVariableSymbol.cs b/Upsilon/Binder/VariableSymbols/InternalFunctionVariableSymbol.cs index 78f56e8..2b8efcf 100644 --- a/Upsilon/Binder/VariableSymbols/InternalFunctionVariableSymbol.cs +++ b/Upsilon/Binder/VariableSymbols/InternalFunctionVariableSymbol.cs @@ -9,7 +9,8 @@ namespace Upsilon.Binder.VariableSymbols { public class InternalFunctionVariableSymbol : FunctionVariableSymbol { - private InternalFunctionParameter[] FunctionParameters { get; } + // ReSharper disable once MemberCanBePrivate.Global + public InternalFunctionParameter[] FunctionParameters { get; } private int MinimalParametersRequired { get; } private MethodInfo OverrideResultType { get; }