comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLStatementNode.java @ 15776:111bf82514ca

SL: adding NodeInfo.descriptions to SL statements
author Christian Wirth <christian.wirth@oracle.com>
date Mon, 19 May 2014 18:59:04 +0200
parents b16ec83edc73
children abe7128ca473
comparison
equal deleted inserted replaced
15775:4293efaaab76 15776:111bf82514ca
28 /** 28 /**
29 * The base class of all Truffle nodes for SL. All nodes (even expressions) can be used as 29 * The base class of all Truffle nodes for SL. All nodes (even expressions) can be used as
30 * statements, i.e., without returning a value. The {@link VirtualFrame} provides access to the 30 * statements, i.e., without returning a value. The {@link VirtualFrame} provides access to the
31 * local variables. 31 * local variables.
32 */ 32 */
33 @NodeInfo(language = "Simple Language", description = "The abstract base node for all statements")
33 public abstract class SLStatementNode extends Node { 34 public abstract class SLStatementNode extends Node {
34 35
35 /** 36 /**
36 * Execute this node as as statement, where no return value is necessary. 37 * Execute this node as as statement, where no return value is necessary.
37 */ 38 */