Package org.teavm.dependency

Examples of org.teavm.dependency.MethodDependency


    @Override
    public void methodAchieved(DependencyAgent agent, MethodDependency method) {
        switch (method.getReference().getName()) {
            case "scheduleOnce": {
                MethodDependency performMethod = agent.linkMethod(performOnceRef, method.getStack());
                performMethod.use();
                method.getVariable(1).connect(performMethod.getVariable(1));
                break;
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.teavm.dependency.MethodDependency

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.