Package joust.optimisers.runnables

Examples of joust.optimisers.runnables.FinalFolder


        // very much more convenient than working on the actual tree if you don't care about the desugared things.)

        // Don't optimise in library annotation mode - we just need one pass of the SideEffectVisitor (via TreeConverter)
        // and we're done,
        if (!OptimiserOptions.annotatingLibrary) {
            OptimisationPhaseManager.register(new FinalFolder(), AFTER_DESUGAR);
            OptimisationPhaseManager.register(new ConstFold(), AFTER_DESUGAR);
            OptimisationPhaseManager.register(new ShortFunc(), AFTER_DESUGAR);
            OptimisationPhaseManager.register(new Unbox(), AFTER_DESUGAR);

            // TODO: Repair and re-enable this.
View Full Code Here

TOP

Related Classes of joust.optimisers.runnables.FinalFolder

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.