Package joust.optimisers.runnables

Examples of joust.optimisers.runnables.AssertionStrip


            return;
        }

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

        OptimisationPhaseManager.register(new JavacBrutaliser(), AFTER_ANNOTATION_PROCESSING);
        OptimisationPhaseManager.register(new TreeConverter(), AFTER_DESUGAR);
View Full Code Here

TOP

Related Classes of joust.optimisers.runnables.AssertionStrip

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.