Package dk.brics.jwig.analysis.xact

Examples of dk.brics.jwig.analysis.xact.PlugDetector


     * @param stateMachine
     *            as the stateMachine to save the results in
     */
    private void handlePlug(Stmt st, Body body, StateMachine stateMachine) {
        assert (st.containsInvokeExpr());
        PlugDetector detector = new PlugDetector(st.getInvokeExpr(), st, body);
        if (detector.isPlug()) {
            Plugging plugging = makePlugging((AssignStmt) st, body, detector);
            if (plugging != null)
                stateMachine.addPlugging(plugging);
        }
    }
View Full Code Here

TOP

Related Classes of dk.brics.jwig.analysis.xact.PlugDetector

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.