Examples of WriteReadOnlyGlobalNode


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
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.