Package org.jruby.truffle.nodes.globals

Examples of org.jruby.truffle.nodes.globals.WriteReadOnlyGlobalNode


        final String name = node.getName();
        RubyNode rhs = node.getValueNode().accept(this);

        if (readOnlyGlobalVariables.contains(name)) {
            return new WriteReadOnlyGlobalNode(context, sourceSection, name, rhs);
        } else {
            if (name.equals("$~")) {
                rhs = new CheckMatchVariableTypeNode(context, sourceSection, rhs);
            }
View Full Code Here

TOP

Related Classes of org.jruby.truffle.nodes.globals.WriteReadOnlyGlobalNode

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.