12345678910111213141516171819202122 |
- exports.error = function(options) {
- return new Error(options);
- };
- var Error = function(options) {
- this.expected = options.expected;
- this.actual = options.actual;
- this._location = options.location;
- };
- Error.prototype.describe = function() {
- var locationDescription = this._location ? this._location.describe() + ":\n" : "";
- return locationDescription + "Expected " + this.expected + "\nbut got " + this.actual;
- };
- Error.prototype.lineNumber = function() {
- return this._location.lineNumber();
- };
- Error.prototype.characterNumber = function() {
- return this._location.characterNumber();
- };
|