blob: b6b7bde6f0512834f2d3a4ede45cbc3c7743b92d [file] [log] [blame]
"use strict";
var state = {
syntax: {},
reset: function () {
this.tokens = {
prev: null,
next: null,
curr: null
},
this.option = {};
this.directive = {};
this.jsonMode = false;
this.lines = [];
this.tab = "";
this.cache = {}; // Node.JS doesn't have Map. Sniff.
}
};
exports.state = state;