(options)
| 15064 | }; |
| 15065 | |
| 15066 | var Error = function(options) { |
| 15067 | this.expected = options.expected; |
| 15068 | this.actual = options.actual; |
| 15069 | this._location = options.location; |
| 15070 | }; |
| 15071 | |
| 15072 | Error.prototype.describe = function() { |
| 15073 | var locationDescription = this._location ? this._location.describe() + ":\n" : ""; |
no outgoing calls
no test coverage detected