NumericalLiteral top-level property
ChoiceParser
NumericalLiteral
final
16
NumericLiteral ::= INTEGER | DECIMAL | DOUBLE
Note: Needs to rearrange the order as INTEGER will greedy match for the default sequence.
Implementation
final NumericalLiteral = DOUBLE | DECIMAL | INTEGER;