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

Unified Diff: third_party/WebKit/Source/devtools/front_end/platform/utilities.js

Issue 1774503005: [DevTools] Roll closure compiler to ToT version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/devtools/front_end/platform/utilities.js
diff --git a/third_party/WebKit/Source/devtools/front_end/platform/utilities.js b/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
index d5999d2b449a2377eb3574e644ac74ff0392c8c0..808595e12c49acc659c79b44f61d16a429a08ceb 100644
--- a/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
+++ b/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
@@ -1270,7 +1270,7 @@ Set.prototype.valuesArray = function()
}
/**
- * @param {!Iterable<T>} iterable
+ * @param {!Iterable<T>|!Array<!T>} iterable
* @template T
*/
Set.prototype.addAll = function(iterable)
@@ -1291,9 +1291,7 @@ Map.prototype.remove = function(key)
}
/**
- * @return {!Array.<V>}
- * @template K, V
- * @this {Map.<K, V>}
+ * @return {!Array<!VALUE>}
*/
Map.prototype.valuesArray = function()
{
@@ -1301,9 +1299,7 @@ Map.prototype.valuesArray = function()
}
/**
- * @return {!Array<K>}
- * @template K, V
- * @this {Map<K, V>}
+ * @return {!Array<!KEY>}
*/
Map.prototype.keysArray = function()
{

Powered by Google App Engine
This is Rietveld 408576698