Package r.data.RFunction

Examples of r.data.RFunction.EnclosingSlot


            if (val != null) {
                f.writeAtRef(slot, value);
                return true;
            }
            // variable not present in the enclosing slot
            EnclosingSlot eslot = f.findEnclosingVariable(symbol);
            if (eslot == null) {
                return f.superWriteToExtensionsAndTopLevel(symbol, value);
            }
            // try the next enclosing slot
            f = f.enclosingFrame();
View Full Code Here


        int slot = findVariable(symbol);
        if (slot != -1) {
            superWriteViaWriteSet(slot, symbol, value);
            return;
        }
        EnclosingSlot eslot = findEnclosingVariable(symbol);
        if (eslot != null) {
            superWriteViaEnclosingSlotAndTopLevel(eslot.hops, eslot.slot, symbol, value);
            return;
        }
        superWriteToExtensionsAndTopLevel(symbol, value);
View Full Code Here

TOP

Related Classes of r.data.RFunction.EnclosingSlot

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.