diff graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildNodeTest.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 1a7ebcf3ae22
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildNodeTest.java	Sat Apr 05 19:35:30 2014 +0200
+++ b/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/ChildNodeTest.java	Sun Apr 06 17:46:24 2014 +0200
@@ -33,7 +33,7 @@
 
 /**
  * <h3>Creating a Child Node</h3>
- * 
+ *
  * <p>
  * Child nodes are stored in the class of the parent node in fields that are marked with the
  * {@link Child} annotation. Before such a field is assigned, {@link Node#adoptChild} must be
@@ -41,13 +41,13 @@
  * {@link Node#getParent()} method allows access to this field. Every node also provides the ability
  * to iterate over its children using {@link Node#getChildren()}.
  * </p>
- * 
+ *
  * <p>
  * A child node field must be declared private and non-final. It may only be assigned in the
  * constructor of the parent node. For changing the structure of the tree at run time, the method
  * {@link Node#replace(Node)} must be used (see {@link ReplaceTest}).
  * </p>
- * 
+ *
  * <p>
  * The next part of the Truffle API introduction is at
  * {@link com.oracle.truffle.api.test.ChildrenNodesTest}.