diff graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildrenNodesTest.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 8be5c68a779d
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildrenNodesTest.java	Sat Apr 05 19:35:30 2014 +0200
+++ b/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildrenNodesTest.java	Sun Apr 06 17:46:24 2014 +0200
@@ -32,7 +32,7 @@
 
 /**
  * <h3>Creating an Array of Children Nodes</h3>
- * 
+ *
  * <p>
  * An array of children nodes can be used as a field in a parent node. The field has to be annotated
  * with {@link com.oracle.truffle.api.nodes.Node.Children} and must be declared private and final.
@@ -41,7 +41,7 @@
  * its first values, it must never be changed. It is only possible to call {@link Node#replace} on a
  * child node.
  * </p>
- * 
+ *
  * <p>
  * The next part of the Truffle API introduction is at
  * {@link com.oracle.truffle.api.test.FinalFieldTest}.