Skip to content

Commit 580f91d

Browse files
committed
eclipseformat
1 parent b3f8891 commit 580f91d

File tree

1 file changed

+4
-5
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/expression

1 file changed

+4
-5
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/expression/ExpressionNode.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ public NodeCost getCost() {
123123
}
124124

125125
/**
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.
128128
*/
129129
public final StatementNode asStatement() {
130130
return new ExpressionStatementNode(this);
@@ -153,9 +153,8 @@ public boolean hasSideEffectAsAnExpression() {
153153
}
154154

155155
/**
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}.
159158
*/
160159
public final ExpressionNode withSideEffect(StatementNode sideEffect) {
161160
return new ExpressionWithSideEffects(this, sideEffect);

0 commit comments

Comments
 (0)