Package joust.analysers

Examples of joust.analysers.TouchedSymbolLocator


        // If the assignee is being transformed away and the rhs refers to something that isn't, we fail the assignee and
        // every candidate referred to on the RHS.
        // If the assignee is not being transformed away, and the rhs refers to things that aren't, we fail every candidate
        // referred to on the rhs.
        TouchedSymbolLocator locator = new TouchedSymbolLocator();
        locator.visitTree(that.rhs);
        Set<VarSymbol> touchedSymbols = locator.touched;
        log.debug("touched syms: {}", Arrays.toString(touchedSymbols.toArray()));
        // Strip out all the symbols that aren't boxed.
        Iterator<VarSymbol> i = touchedSymbols.iterator();
        while (i.hasNext()) {
View Full Code Here



            // If you survived that, you now need to add every referenced boxed symbol in the arguments to the dependencies of
            // the callee (As it may only be transformed if the arguments to all functions needing the argument check are also
            // being transformed).
            TouchedSymbolLocator locator = new TouchedSymbolLocator();
            for (AJCExpressionTree arg : that.args) {
                locator.visitTree(arg);
            }

            Set<VarSymbol> touchedSyms = locator.touched;
            touchedSyms.retainAll(fixableUsages.keySet());
            for (VarSymbol touchedSym : touchedSyms) {
View Full Code Here

TOP

Related Classes of joust.analysers.TouchedSymbolLocator

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.