babel/src/lookahead.js
2015-07-11 20:56:26 +01:00

49 lines
860 B
JavaScript

import { Parser } from "./state";
const pp = Parser.prototype;
var STATE_KEYS = [
"lastTokStartLoc",
"lastTokEndLoc",
"lastTokStart",
"lastTokEnd",
"lineStart",
"startLoc",
"curLine",
"endLoc",
"start",
"pos",
"end",
"type",
"value",
"exprAllowed",
"potentialArrowAt",
"currLine",
"input",
"inType",
"inFunction",
"inGenerator",
"labels"
];
pp.getState = function () {
var state = {};
for (var i = 0; i < STATE_KEYS.length; i++) {
var key = STATE_KEYS[i];
state[key] = this[key];
}
state.context = this.context.slice();
state.labels = this.labels.slice();
return state;
};
pp.lookahead = function () {
var old = this.getState();
this.isLookahead = true;
this.next();
this.isLookahead = false;
var curr = this.getState();
for (var key in old) this[key] = old[key];
return curr;
};