parse method
Parse the number represented by the string. If it's not parseable, throws a FormatException.
Implementation
num parse(String text) => new _NumberParser(this, text).value;
Parse the number represented by the string. If it's not parseable, throws a FormatException.
num parse(String text) => new _NumberParser(this, text).value;