* when toSource() is called), which results in invalid JS syntax. Using the actual number value instead
* to fix this (shouldn't break anything)
*/
private void handleNumberLiteralBug(final AstNode node) {
if (node.getType() == Token.NUMBER) {
final NumberLiteral numberLiteral = (NumberLiteral) node;
numberLiteral.setValue(getValue(numberLiteral));
}
}