File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/expression Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ public NodeCost getCost() {
123
123
}
124
124
125
125
/**
126
- * If expressions appear in a block of statements, they are wrapped in a
127
- * {@link StatementNode} that simply drops the result.
126
+ * If expressions appear in a block of statements, they are wrapped in a {@link StatementNode}
127
+ * that simply drops the result.
128
128
*/
129
129
public final StatementNode asStatement () {
130
130
return new ExpressionStatementNode (this );
@@ -153,9 +153,8 @@ public boolean hasSideEffectAsAnExpression() {
153
153
}
154
154
155
155
/**
156
- * Some expressions can have hidden side-effects such as writing to a
157
- * temporary variable. These can be wrapped together with their side
158
- * effecting {@link StatementNode}.
156
+ * Some expressions can have hidden side-effects such as writing to a temporary variable. These
157
+ * can be wrapped together with their side effecting {@link StatementNode}.
159
158
*/
160
159
public final ExpressionNode withSideEffect (StatementNode sideEffect ) {
161
160
return new ExpressionWithSideEffects (this , sideEffect );
You can’t perform that action at this time.
0 commit comments