0519d7e3ce
Includes: * Moving the source code from /src to /lib. * Adding an explicit file list to package.json * Updating the Makefile. * Updating the spec and benchmark suites and their READMEs. Part of a fix for GH-32.
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
var utils = require("./utils");
|
|
|
|
/* Thrown when the grammar contains an error. */
|
|
module.exports = function(message) {
|
|
this.name = "GrammarError";
|
|
this.message = message;
|
|
};
|
|
|
|
utils.subclass(module.exports, Error);
|