Package joust.tree.conversion

Examples of joust.tree.conversion.TreeConverter


        if (OptimiserOptions.stripAssertions) {
            OptimisationPhaseManager.register(new AssertionStrip(), AFTER_ANNOTATION_PROCESSING);
        }

        OptimisationPhaseManager.register(new JavacBrutaliser(), AFTER_ANNOTATION_PROCESSING);
        OptimisationPhaseManager.register(new TreeConverter(), AFTER_DESUGAR);

        OptimisationPhaseManager.register(new ProxyDetector(), AFTER_DESUGAR);

        // As it happens, almost all our phases operate in the AFTER_DESUGAR phase (as this turns out to be
        // very much more convenient than working on the actual tree if you don't care about the desugared things.)
View Full Code Here

TOP

Related Classes of joust.tree.conversion.TreeConverter

Copyright © 2018 www.massapicom. 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.