@v4fire/core
Version:
V4Fire core library
26 lines (25 loc) • 889 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.numberFractionStart = numberFractionStart;
var _const = require("../../../../../core/json/stream/parser/const");
function* numberFractionStart() {
this.patterns.numberFracStart.lastIndex = this.index;
this.matched = this.patterns.numberFracStart.exec(this.buffer);
if (this.matched == null) {
if (this.index < this.buffer.length) {
throw new SyntaxError("Can't parse the input: expected a fractional part of a number");
}
return _const.PARSING_COMPLETE;
}
this.value = this.matched[0];
yield {
name: 'numberChunk',
value: this.value
};
this.accumulator += this.value;
this.expected = _const.parserStateTypes.NUMBER_FRACTION_DIGIT;
this.index += this.value.length;
}
_const.parserStates[_const.parserStateTypes.NUMBER_FRACTION_START] = numberFractionStart;