internal ScopedFunctionMethodGroup(ScopedUserDefinedFunction functionDefinition) : base(functionDefinition.Declaration.Name)
 {
     FunctionDefinition = functionDefinition;
 }
Beispiel #2
0
 internal static ScopedFunctionMethodGroup Create(ScopedUserDefinedFunction scopedFunction)
 {
     return(new ScopedFunctionMethodGroup(scopedFunction));
 }