Package org.jruby.truffle.nodes.objectstorage

Examples of org.jruby.truffle.nodes.objectstorage.ReadHeadObjectFieldNode


    private final BranchProfile nullProfile = new BranchProfile();

    public ReadInstanceVariableNode(RubyContext context, SourceSection sourceSection, String name, RubyNode receiver, boolean isGlobal) {
        super(context, sourceSection);
        this.receiver = BoxingNodeFactory.create(context, sourceSection, receiver);
        readNode = new ReadHeadObjectFieldNode(name, hook);
        this.isGlobal = isGlobal;
    }
View Full Code Here

TOP

Related Classes of org.jruby.truffle.nodes.objectstorage.ReadHeadObjectFieldNode

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.