comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/CallTarget.java @ 16859:1051d6e4b61b

truffle api: update comments
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 19 Aug 2014 13:51:14 +0200
parents a47e68e146a2
children
comparison
equal deleted inserted replaced
16858:a8af2abc2039 16859:1051d6e4b61b
28 * Represents the target of a call. 28 * Represents the target of a call.
29 */ 29 */
30 public interface CallTarget { 30 public interface CallTarget {
31 31
32 /** 32 /**
33 * Calls this target as a root method.. 33 * Calls this target as a root method.
34 * 34 *
35 * @param arguments passed arguments as an object array 35 * @param arguments passed arguments as an object array
36 * @return the return result of the call 36 * @return the return result of the call
37 */ 37 */
38 Object call(Object... arguments); 38 Object call(Object... arguments);