@v4fire/core
Version:
V4Fire core library
27 lines (26 loc) • 833 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.numberExponent = numberExponent;
var _const = require("../../../../../core/json/stream/parser/const");
function* numberExponent() {
this.patterns.numberExponent.lastIndex = this.index;
this.matched = this.patterns.numberExponent.exec(this.buffer);
if (this.matched == null) {
if (this.index < this.buffer.length) {
this.expected = _const.parserExpected[this.parent];
return;
}
return _const.PARSING_COMPLETE;
}
this.value = this.matched[0];
yield {
name: 'numberChunk',
value: this.value
};
this.accumulator += this.value;
this.expected = _const.parserStateTypes.NUMBER_EXP_SIGN;
this.index += this.value.length;
}
_const.parserStates[_const.parserStateTypes.NUMBER_EXPONENT] = numberExponent;