ABT.Env.SetCurrentFunction C# (CSharp) Метод

SetCurrentFunction() публичный Метод

public SetCurrentFunction ( FunctionType type ) : Env
type FunctionType
Результат Env
        public Env SetCurrentFunction(FunctionType type) {
            Scope top = this._scopes.Peek();
            return new Env(this._scopes.Pop().Push(top.SetCurrentFunction(type)));
        }