Examples of TruffleBridgeImpl


Examples of org.jruby.truffle.TruffleBridgeImpl

             * It's possible to remove Truffle classes from the JRuby distribution, so we provide a sensible
             * explanation when the classes are not found.
             */

            try {
                truffleBridge = new TruffleBridgeImpl(this);
                truffleBridge.init();
            } catch (NoClassDefFoundError e) {
                throw new UnsupportedOperationException("Support for Truffle has been removed from this distribution", e);
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.