comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/runtime/SLArguments.java @ 13943:89ac75425681

SL: small cleanups
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 12 Feb 2014 10:30:42 -0800
parents b16ec83edc73
children
comparison
equal deleted inserted replaced
13942:1ee27cd07ed0 13943:89ac75425681
34 public final class SLArguments extends Arguments { 34 public final class SLArguments extends Arguments {
35 35
36 private final Object[] argumentValues; 36 private final Object[] argumentValues;
37 37
38 /** 38 /**
39 * Used by the caller, i.e., the {@link SLCallNode node that performs a function call}. 39 * Used by the caller, i.e., the {@link SLInvokeNode node that performs a function call}.
40 */ 40 */
41 public SLArguments(Object[] arguments) { 41 public SLArguments(Object[] arguments) {
42 this.argumentValues = arguments; 42 this.argumentValues = arguments;
43 } 43 }
44 44