in lib/common_generator.js [21:32]
emitNumber(ast, level) {
this.emit(ast.value.value, level);
if (ast.value.type === 'long') {
this.emit('L');
}
if (ast.value.type === 'double') {
this.emit('D');
}
if (ast.value.type === 'float') {
this.emit('F');
}
}