diff graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/CallTest.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 df1d665ca846
children
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/CallTest.java	Sat Apr 05 19:35:30 2014 +0200
+++ b/graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/CallTest.java	Sun Apr 06 17:46:24 2014 +0200
@@ -30,13 +30,13 @@
 
 /**
  * <h3>Calling Another Tree</h3>
- * 
+ *
  * <p>
  * A guest language implementation can create multiple call targets using the
  * {@link TruffleRuntime#createCallTarget(RootNode)} method. Those call targets can be passed around
  * as normal Java objects and used for calling guest language methods.
  * </p>
- * 
+ *
  * <p>
  * The next part of the Truffle API introduction is at
  * {@link com.oracle.truffle.api.test.ArgumentsTest}.