comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RepeatingNode.java @ 18794:e688e42b41e3

Truffle: LoopNode: child field type can be RepeatingNode now
author Andreas Woess <andreas.woess@jku.at>
date Mon, 05 Jan 2015 19:01:01 +0100
parents 534a87f866dc
children
comparison
equal deleted inserted replaced
18792:7bb1abca2c0d 18794:e688e42b41e3
27 import com.oracle.truffle.api.frame.*; 27 import com.oracle.truffle.api.frame.*;
28 28
29 /** 29 /**
30 * Experimental API: may change significantly without notice. 30 * Experimental API: may change significantly without notice.
31 */ 31 */
32 public interface RepeatingNode { 32 public interface RepeatingNode extends NodeInterface {
33 33
34 boolean executeRepeating(VirtualFrame frame); 34 boolean executeRepeating(VirtualFrame frame);
35 35
36 } 36 }