Package joust.analysers

Examples of joust.analysers.Live


    @Override
    public void visitMethodDef(AJCMethodDecl tree) {
        // Run LVA over the method...
        // Actually, use the narking side effects?
        Live live = new Live();
        live.visitTree(tree);

        everLive = tree.everLive;

        // Don't visit the parameters of a method. Deleting parameters isn't allowed.
        // While we're at it, let's gloss over all the crap we don't care about.
View Full Code Here

TOP

Related Classes of joust.analysers.Live

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.