ABT.Env2.FunctionScope.FunctionScope C# (CSharp) Method

FunctionScope() public method

public FunctionScope ( FunctionType functionType, ImmutableList functionParams, ImmutableStack localScopes ) : System
functionType FunctionType
functionParams ImmutableList
localScopes ImmutableStack
return System
            public FunctionScope(FunctionType functionType, ImmutableList<ParameterObjectEntry> functionParams, ImmutableStack<LocalSymbolTable> localScopes) {
                this.FunctionType = functionType;
                this.FunctionParams = FunctionParams;
                this.LocalScopes = localScopes;
            }

Same methods

Env2.FunctionScope::FunctionScope ( FunctionType functionType, ImmutableList functionParams ) : System
Env2.FunctionScope