"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) Eif (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var _namespace_1 = require("./_namespace");
var EqualMatchError = (function (_super) {
__extends(EqualMatchError, _super);
function EqualMatchError(actualValue, expectedValue, shouldMatch) {
_super.call(this, actualValue, expectedValue, "Expected " + JSON.stringify(actualValue) + " " + (!shouldMatch ? "not " : "") + "to be equal to " + JSON.stringify(expectedValue) + ".");
}
return EqualMatchError;
}(_namespace_1.MatchError));
exports.EqualMatchError = EqualMatchError;
//# sourceMappingURL=equal-match-error.js.map |