diff graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/FrameTest.java @ 14991:64dcb92ee75a

Truffle: Change signature for Truffle calls from (PackedFrame, Arguments) to (Object[]).
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 06 Apr 2014 17:46:24 +0200
parents a08b8694f556
children
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/FrameTest.java	Sat Apr 05 19:35:30 2014 +0200
+++ b/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/FrameTest.java	Sun Apr 06 17:46:24 2014 +0200
@@ -30,7 +30,7 @@
 
 /**
  * <h3>Storing Values in Frame Slots</h3>
- * 
+ *
  * <p>
  * The frame is the preferred data structure for passing values between nodes. It can in particular
  * be used for storing the values of local variables of the guest language. The
@@ -40,7 +40,7 @@
  * current value of a particular frame slot. Values can be removed from a frame via the
  * {@link FrameDescriptor#removeFrameSlot(Object)} method.
  * </p>
- * 
+ *
  * <p>
  * There are five primitive types for slots available: {@link java.lang.Boolean},
  * {@link java.lang.Integer}, {@link java.lang.Long}, {@link java.lang.Float}, and
@@ -53,7 +53,7 @@
  * {@link Frame#setLong}, {@link Frame#setFloat}, or {@link Frame#setDouble}) in the {@link Frame}
  * class.
  * </p>
- * 
+ *
  * <p>
  * The next part of the Truffle API introduction is at
  * {@link com.oracle.truffle.api.test.FrameSlotTypeSpecializationTest}.