comparison graal/GraalCompiler/src/com/sun/c1x/ir/ValueClosure.java @ 2538:e1ba5a93e997

Clean up on Value class and LIRGenerator/LIRItem-related things.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 20:13:54 +0200
parents 16b9a8b5ad39
children
comparison
equal deleted inserted replaced
2537:4a016ff4d2df 2538:e1ba5a93e997
23 package com.sun.c1x.ir; 23 package com.sun.c1x.ir;
24 24
25 /** 25 /**
26 * The {@code ValueClosure} interface represents a first-class 26 * The {@code ValueClosure} interface represents a first-class
27 * function that can be applied to a value. 27 * function that can be applied to a value.
28 *
29 * @author Ben L. Titzer
30 */ 28 */
31 public interface ValueClosure { 29 public interface ValueClosure {
32 Value apply(Value i); 30 Value apply(Value i);
33 } 31 }