Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ext/ripper/RipperLexer.java
Original file line number Diff line number Diff line change
@@ -2255,7 +2255,7 @@ private int parseNumber(int c) throws IOException {
default :
pushback(c);
numberBuffer.append('0');
return setIntegerLiteral(numberBuffer.toString(), 10);
return setIntegerLiteral(numberBuffer.toString(), numberLiteralSuffix(SUFFIX_ALL));
}
}

0 comments on commit 45e860c

Please sign in to comment.