Skip to content

Commit 76c35b9

Browse files
committed
Change order of local variable declaration in BodyTranslator
1 parent 8c0f074 commit 76c35b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/parser/ast/MultipleAsgnParseNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ public ListParseNode getPost() {
8080

8181
@Override
8282
public List<ParseNode> childNodes() {
83-
return ParseNode.createList(pre, rest, getValueNode());
83+
return ParseNode.createList(pre, rest, post, getValueNode());
8484
}
8585
}

0 commit comments

Comments
 (0)