comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/Frame.java @ 11638:269e6794e1ec

Truffle: Frame restructuring.
author Andreas Woess <andreas.woess@jku.at>
date Sun, 15 Sep 2013 02:39:07 +0200
parents 51dcddfa25a6
children f753092f608d
comparison
equal deleted inserted replaced
11637:126e20d36563 11638:269e6794e1ec
62 * Write access to a local variable of type {@link Object}. 62 * Write access to a local variable of type {@link Object}.
63 * 63 *
64 * @param slot the slot of the local variable 64 * @param slot the slot of the local variable
65 * @param value the new value of the local variable 65 * @param value the new value of the local variable
66 */ 66 */
67 void setObject(FrameSlot slot, Object value) throws FrameSlotTypeException; 67 void setObject(FrameSlot slot, Object value);
68 68
69 /** 69 /**
70 * Read access to a local variable of type byte. 70 * Read access to a local variable of type byte.
71 * 71 *
72 * @param slot the slot of the local variable 72 * @param slot the slot of the local variable