query_parse_error.js 197 B

12345678
  1. lunr.QueryParseError = function (message, start, end) {
  2. this.name = "QueryParseError"
  3. this.message = message
  4. this.start = start
  5. this.end = end
  6. }
  7. lunr.QueryParseError.prototype = new Error