scanUnsignedNumericLiteral method

dynamic scanUnsignedNumericLiteral()

Implementation

scanUnsignedNumericLiteral() {
  scanExactNumericLiteral();
  if (eos) return;
  if (isE(cur)) {
    if (!advance()) throw "unexpected end of stream";
    if (!isDigit(cur) && !isSign(cur)) throw "unexpected character after 'E'";
    scanSignedInteger();
  }
}