Package com.sun.tools.javac.code

Examples of com.sun.tools.javac.code.Scope.dup()


            throw new AssertionError("Broken use of LetExpr");
        }
       
        // make a new environment which captures the current one
        Env<AttrContext> localEnv =
                env.dup(tree, env.info.dup(scope.dup()));

        // Field initialisers have not been entered yet, so we need to do it now:
        if (localEnv.info.scope.owner.kind == Kinds.TYP) {
            memberEnter.memberEnter(tree, localEnv);
            annotate.flush();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.