ABT.Env.PushEntry C# (CSharp) Method

PushEntry() public method

public PushEntry ( EntryKind loc, String name, ExprType type ) : Env
loc EntryKind
name String
type ExprType
return Env
        public Env PushEntry(EntryKind loc, String name, ExprType type) {
            Scope top = this._scopes.Peek();
            return new Env(this._scopes.Pop().Push(top.PushEntry(loc, name, type)));
        }