comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLStatementNode.java @ 16595:618d92152d3c

SL: Added support for instrumentation.
author David Piorkowski <david.piorkowski@oracle.com>
date Thu, 24 Jul 2014 16:14:44 -0700
parents abe7128ca473
children 7661cc464239
comparison
equal deleted inserted replaced
16592:8084d44c78d3 16595:618d92152d3c
40 40
41 /** 41 /**
42 * Execute this node as as statement, where no return value is necessary. 42 * Execute this node as as statement, where no return value is necessary.
43 */ 43 */
44 public abstract void executeVoid(VirtualFrame frame); 44 public abstract void executeVoid(VirtualFrame frame);
45
46 public SLStatementNode getNonWrapperNode() {
47 return this;
48 }
45 } 49 }