comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/controlflow/SLWhileNode.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents a08b8694f556
children 111bf82514ca
comparison
equal deleted inserted replaced
14905:b7afc71535d3 14906:f3a5036cc13c
37 * value. We do not have a node type that can only return a {@code boolean} value, so 37 * value. We do not have a node type that can only return a {@code boolean} value, so
38 * {@link #evaluateCondition executing the condition} can lead to a type error. 38 * {@link #evaluateCondition executing the condition} can lead to a type error.
39 */ 39 */
40 @Child private SLExpressionNode conditionNode; 40 @Child private SLExpressionNode conditionNode;
41 41
42 /** Statement (or {@SLBlockNode block}) executed as long as the condition is true. */ 42 /** Statement (or {@link SLBlockNode block}) executed as long as the condition is true. */
43 @Child private SLStatementNode bodyNode; 43 @Child private SLStatementNode bodyNode;
44 44
45 /** 45 /**
46 * Profiling information, collected by the interpreter, capturing whether a {@code continue} 46 * Profiling information, collected by the interpreter, capturing whether a {@code continue}
47 * statement was used in this loop. This allows the compiler to generate better code for loops 47 * statement was used in this loop. This allows the compiler to generate better code for loops