diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index c91846b4..79e8100b 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -4409,7 +4409,6 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * _Note:_ Do not construct this directly. Jasmine will construct one and * pass it to matchers and asymmetric equality testers. * @name MatchersUtil - * @since 2.0.0 * @classdesc Utilities for use in implementing matchers * @constructor */ @@ -4421,6 +4420,7 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * taking into account the current set of custom value formatters. * @function * @name MatchersUtil#pp + * @since 3.6.0 * @param {*} value The value to pretty-print * @return {string} The pretty-printed value */ @@ -4432,6 +4432,7 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * logic as {@link MatchersUtil#equals}. * @function * @name MatchersUtil#contains + * @since 2.0.0 * @param {*} haystack The collection to search * @param {*} needle The value to search for * @param [customTesters] An array of custom equality testers @@ -4524,6 +4525,7 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * Determines whether two values are deeply equal to each other. * @function * @name MatchersUtil#equals + * @since 2.0.0 * @param {*} a The first value to compare * @param {*} b The second value to compare * @param [customTesters] An array of custom equality testers diff --git a/src/core/matchers/matchersUtil.js b/src/core/matchers/matchersUtil.js index 8ee6368e..d473976d 100644 --- a/src/core/matchers/matchersUtil.js +++ b/src/core/matchers/matchersUtil.js @@ -5,7 +5,6 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * _Note:_ Do not construct this directly. Jasmine will construct one and * pass it to matchers and asymmetric equality testers. * @name MatchersUtil - * @since 2.0.0 * @classdesc Utilities for use in implementing matchers * @constructor */ @@ -17,6 +16,7 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * taking into account the current set of custom value formatters. * @function * @name MatchersUtil#pp + * @since 3.6.0 * @param {*} value The value to pretty-print * @return {string} The pretty-printed value */ @@ -28,6 +28,7 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * logic as {@link MatchersUtil#equals}. * @function * @name MatchersUtil#contains + * @since 2.0.0 * @param {*} haystack The collection to search * @param {*} needle The value to search for * @param [customTesters] An array of custom equality testers @@ -120,6 +121,7 @@ getJasmineRequireObj().MatchersUtil = function(j$) { * Determines whether two values are deeply equal to each other. * @function * @name MatchersUtil#equals + * @since 2.0.0 * @param {*} a The first value to compare * @param {*} b The second value to compare * @param [customTesters] An array of custom equality testers