maybeEatHexDigit method
Implementation
bool maybeEatHexDigit() {
  if (_index < _text.length && TokenizerHelpers.isHexDigit(_text.codeUnitAt(_index))) {
    _index += 1;
    return true;
  }
  return false;
}bool maybeEatHexDigit() {
  if (_index < _text.length && TokenizerHelpers.isHexDigit(_text.codeUnitAt(_index))) {
    _index += 1;
    return true;
  }
  return false;
}