langtools/src/share/classes/com/sun/tools/javac/comp/Env.java
changeset 5847 1908176fd6e3
parent 5520 86e4b9a9da40
child 10950 e87b50888909
equal deleted inserted replaced
5846:6df0e6bcb388 5847:1908176fd6e3
    34  *  of the subtree that's currently visited, such as the enclosing method,
    34  *  of the subtree that's currently visited, such as the enclosing method,
    35  *  the enclosing class, or the enclosing toplevel node. They also contain
    35  *  the enclosing class, or the enclosing toplevel node. They also contain
    36  *  a generic component, represented as a type parameter, to carry further
    36  *  a generic component, represented as a type parameter, to carry further
    37  *  information specific to individual passes.
    37  *  information specific to individual passes.
    38  *
    38  *
    39  *  <p><b>This is NOT part of any API supported by Sun Microsystems.  If
    39  *  <p><b>This is NOT part of any supported API.
    40  *  you write code that depends on this, you do so at your own risk.
    40  *  If you write code that depends on this, you do so at your own risk.
    41  *  This code and its internal interfaces are subject to change or
    41  *  This code and its internal interfaces are subject to change or
    42  *  deletion without notice.</b>
    42  *  deletion without notice.</b>
    43  */
    43  */
    44 public class Env<A> implements Iterable<Env<A>> {
    44 public class Env<A> implements Iterable<Env<A>> {
    45 
    45