Package org.teavm.optimization

Examples of org.teavm.optimization.UnusedVariableElimination


            if (cls == null) {
                return null;
            }
            for (MethodHolder method : cls.getMethods()) {
                new GlobalValueNumbering().optimize(method, method.getProgram());
                new UnusedVariableElimination().optimize(method, method.getProgram());
            }
            cache.put(name, cls);
        }
        return cls;
    }
View Full Code Here

TOP

Related Classes of org.teavm.optimization.UnusedVariableElimination

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.