Package dk.brics.jwig.analysis.jaive.feedback

Examples of dk.brics.jwig.analysis.jaive.feedback.NonConstantGapName


    private Plugging makePlugging(AssignStmt st, Body body,
            PlugDetector detector) {
        Set<String> gapNames = getLocalPlugGapNames(st, body);
        if (gapNames.contains(null)) {
            Feedbacks.add(new NonConstantGapName(st, body.getMethod()));
            return null;
        }
        Automaton names = Automaton.makeEmpty();
        for (String string : gapNames) {
            names = names.union(Automaton.makeString(string));
View Full Code Here

TOP

Related Classes of dk.brics.jwig.analysis.jaive.feedback.NonConstantGapName

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.