NumberParserBase<R> constructor
- NumberFormat format,
- String text
Create a new _NumberParser
on which we can call parse().
Implementation
NumberParserBase(this.format, this.text) : input = StringStack(text) {
scale = format.multiplier;
value = parse();
}