@v4fire/core
Version:
V4Fire core library
36 lines (35 loc) • 1.1 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.key = key;
var _const = require("../../../../../core/json/stream/parser/const");
function* key() {
this.patterns.key1.lastIndex = this.index;
this.matched = this.patterns.key1.exec(this.buffer);
if (this.matched == null) {
if (this.index < this.buffer.length) {
throw new SyntaxError("Can't parse the input: expected an object key");
}
return _const.PARSING_COMPLETE;
}
this.value = this.matched[0];
if (this.value === '"') {
yield {
name: 'startKey'
};
this.expected = _const.parserStateTypes.KEY_VAL;
} else if (this.value === '}') {
if (this.expected !== _const.parserStateTypes.KEY1) {
throw new SyntaxError("Can't parse the input: unexpected token '}'");
}
yield {
name: 'endObject'
};
this.parent = this.stack.pop();
this.expected = _const.parserExpected[this.parent];
}
this.index += this.value.length;
}
_const.parserStates[_const.parserStateTypes.KEY] = key;
_const.parserStates[_const.parserStateTypes.KEY1] = key;