Skip to content

Commit 93ca173

Browse files
committed
Show the value for FixnumParseNode#toString
1 parent b46bd15 commit 93ca173

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,9 @@ public void setValue(long value) {
7171
public List<ParseNode> childNodes() {
7272
return EMPTY_LIST;
7373
}
74+
75+
@Override
76+
protected String toStringInternal() {
77+
return "value=" + value;
78+
}
7479
}

0 commit comments

Comments
 (0)