jql-parser
Version:
* Validating queries
36 lines (35 loc) • 890 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Token = void 0;
var Token = /** @class */ (function () {
function Token() {
this.mContent = "";
this.mEnd = 0;
}
Object.defineProperty(Token.prototype, "content", {
get: function () {
return this.mContent;
},
set: function (v) {
this.mContent = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(Token.prototype, "end", {
get: function () {
return this.mEnd;
},
set: function (v) {
this.mEnd = v;
},
enumerable: false,
configurable: true
});
Token.prototype.matcherFn = function (str) {
throw new Error("Method not implemented");
};
;
return Token;
}());
exports.Token = Token;