NumericToken constructor

NumericToken(
  1. FileSpan span, {
  2. String? digitsBeforeDecimal,
  3. bool hasDecimalPoint = false,
  4. String? digitsAfterDecimal,
  5. String? hexDigits,
  6. int? exponent,
})

Implementation

NumericToken(
  FileSpan span, {
  this.digitsBeforeDecimal,
  this.hasDecimalPoint = false,
  this.digitsAfterDecimal,
  this.hexDigits,
  this.exponent,
}) : super(TokenType.numberLiteral, span);