ABT.Env.SetCurrentFunction C# (CSharp) Méthode

SetCurrentFunction() public méthode

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