ABT.Env.SetCurrentFunction C# (CSharp) Method

SetCurrentFunction() public method

public SetCurrentFunction ( FunctionType type ) : Env
type FunctionType
return Env
        public Env SetCurrentFunction(FunctionType type) {
            Scope top = this._scopes.Peek();
            return new Env(this._scopes.Pop().Push(top.SetCurrentFunction(type)));
        }