6294bb5b13
See #443.
17 lines
360 B
JavaScript
17 lines
360 B
JavaScript
"use strict";
|
|
|
|
// Thrown when the grammar contains an error.
|
|
class GrammarError {
|
|
constructor(message, location) {
|
|
this.name = "GrammarError";
|
|
this.message = message;
|
|
this.location = location;
|
|
|
|
if (typeof Error.captureStackTrace === "function") {
|
|
Error.captureStackTrace(this, GrammarError);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = GrammarError;
|