Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(710)

Unified Diff: chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/asserts.js

Issue 924083004: Shorten Closure template notation from Array.<*> to Array<*> in cvox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/asserts.js
diff --git a/chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/asserts.js b/chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/asserts.js
index 4afdac38b6427093d0d45678e342c31ede074399..af9fac0664d99b1a05263b6ed74ae6a84766c9c0 100644
--- a/chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/asserts.js
+++ b/chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/asserts.js
@@ -51,7 +51,7 @@ goog.define('goog.asserts.ENABLE_ASSERTS', goog.DEBUG);
/**
* Error object for failed assertions.
* @param {string} messagePattern The pattern that was used to form message.
- * @param {!Array.<*>} messageArgs The items to substitute into the pattern.
+ * @param {!Array<*>} messageArgs The items to substitute into the pattern.
* @constructor
* @extends {goog.debug.Error}
* @final
@@ -81,9 +81,9 @@ goog.asserts.AssertionError.prototype.name = 'AssertionError';
* Throws an exception with the given message and "Assertion failed" prefixed
* onto it.
* @param {string} defaultMessage The message to use if givenMessage is empty.
- * @param {Array.<*>} defaultArgs The substitution arguments for defaultMessage.
+ * @param {Array<*>} defaultArgs The substitution arguments for defaultMessage.
* @param {string|undefined} givenMessage Message supplied by the caller.
- * @param {Array.<*>} givenArgs The substitution arguments for givenMessage.
+ * @param {Array<*>} givenArgs The substitution arguments for givenMessage.
* @throws {goog.asserts.AssertionError} When the value is not a number.
* @private
*/

Powered by Google App Engine
This is Rietveld 408576698