Package | Description |
---|---|
com.sun.tools.javac.code |
Modifier and Type | Field and Description |
---|---|
Scope.Entry |
Scope.elems
A linear list that also contains all entries in
reverse order of appearance (i.e later entries are pushed on top).
|
static Scope.Entry[] |
Scope.CompoundScope.emptyTable |
static Scope.Entry[] |
Scope.DelegatedScope.emptyTable |
Scope.Entry |
Scope.Entry.sibling
Next entry in same scope.
|
Modifier and Type | Method and Description |
---|---|
Scope.Entry |
Scope.CompoundScope.lookup(Name name,
Filter<Symbol> sf) |
Scope.Entry |
Scope.DelegatedScope.lookup(Name name) |
Scope.Entry |
Scope.ErrorScope.lookup(Name name) |
Scope.Entry |
Scope.lookup(Name name)
Return the entry associated with given name, starting in
this scope and proceeding outwards.
|
Scope.Entry |
Scope.lookup(Name name,
Filter<Symbol> sf) |
Scope.Entry |
Scope.Entry.next()
Return next entry with the same name as this entry, proceeding
outwards if not found in this scope.
|
Scope.Entry |
Scope.Entry.next(Filter<Symbol> sf) |
Constructor and Description |
---|
Entry(Symbol sym,
Scope.Entry shadowed,
Scope.Entry sibling,
Scope scope) |
Copyright © 2017 earcam. All rights reserved.