src/share/classes/com/sun/tools/javac/code/Scope.java

changeset 581
f2fdd52e4e87
parent 554
9d9f26857129
child 673
7ae4016c5938
equal deleted inserted replaced
580:46cf751559ae 581:f2fdd52e4e87
32 * Scope class is a container for symbols which provides 32 * Scope class is a container for symbols which provides
33 * efficient access to symbols given their names. Scopes are implemented 33 * efficient access to symbols given their names. Scopes are implemented
34 * as hash tables. Scopes can be nested; the next field of a scope points 34 * as hash tables. Scopes can be nested; the next field of a scope points
35 * to its next outer scope. Nested scopes can share their hash tables. 35 * to its next outer scope. Nested scopes can share their hash tables.
36 * 36 *
37 * <p><b>This is NOT part of any API supported by Sun Microsystems. If 37 * <p><b>This is NOT part of any supported API.
38 * you write code that depends on this, you do so at your own risk. 38 * If you write code that depends on this, you do so at your own risk.
39 * This code and its internal interfaces are subject to change or 39 * This code and its internal interfaces are subject to change or
40 * deletion without notice.</b> 40 * deletion without notice.</b>
41 */ 41 */
42 public class Scope { 42 public class Scope {
43 43

mercurial