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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/math_util.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/browser/resources/chromeos/chromevox/common/math_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/math_util.js b/chrome/browser/resources/chromeos/chromevox/common/math_util.js
index 34641dedef98796a49342f98cf4b549ffe8e8e42..4de27ae3913c391bdc4db2706d1eba62e0b82ca2 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/math_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/math_util.js
@@ -16,7 +16,7 @@ goog.require('cvox.XpathUtil');
* Checks if a node is in a given class of MathML nodes.
* @private
* @param {!Node} node The node to test.
- * @param {Array.<string>} tags List of tag names.
+ * @param {Array<string>} tags List of tag names.
* @return {boolean} True if node has a tag name included in tags.
*/
cvox.MathUtil.isMathmlNodeOfClass_ = function(node, tags) {
@@ -28,7 +28,7 @@ cvox.MathUtil.isMathmlNodeOfClass_ = function(node, tags) {
* Checks if a node is in a given class of MathJax nodes.
* @private
* @param {!Node} node The node to test.
- * @param {Array.<string>} tags List of tag names.
+ * @param {Array<string>} tags List of tag names.
* @return {boolean} True if node has a tag name included in tags.
*/
cvox.MathUtil.isMathjaxNodeOfClass_ = function(node, tags) {
@@ -46,7 +46,7 @@ cvox.MathUtil.isMathjaxNodeOfClass_ = function(node, tags) {
* of MathML or MathJax nodes.
* @private
* @param {!Node} node The node to test.
- * @param {Array.<string>} tags List of tag names.
+ * @param {Array<string>} tags List of tag names.
* @return {boolean} True if node has a tag name included in tags.
*/
cvox.MathUtil.isMathNodeOfClass_ = function(node, tags) {
@@ -58,7 +58,7 @@ cvox.MathUtil.isMathNodeOfClass_ = function(node, tags) {
/**
* Array of MathML Token Elements.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.TOKEN_LIST = ['MI', 'MN', 'MO', 'MTEXT', 'MSPACE', 'MS'];
@@ -82,7 +82,7 @@ cvox.MathUtil.isToken = function(element) {
/**
* Array of MathML Layout Schemata.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.LAYOUT_LIST = ['MROW', 'MFRAC', 'MSQRT', 'MROOT', 'MSTYLE',
'MERROR', 'MPADDED', 'MPHANTOM', 'MFENCED',
@@ -113,7 +113,7 @@ cvox.MathUtil.isLayout = function(element) {
/**
* Array of MathML Script Schemata.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.SCRIPT_LIST = ['MSUB', 'MSUP', 'MSUBSUP', 'MUNDER', 'MOVER',
'MUNDEROVER', 'MMULTISCRIPTS', 'MPRESCRIPTS'];
@@ -143,7 +143,7 @@ cvox.MathUtil.isScript = function(element) {
/**
* Array of MathML Table and Matrix tokens.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.TABLES_LIST = ['MTABLE', 'MLABELEDTR', 'MTR', 'MTD',
'MALIGNGROUP', 'MALIGNMARK'];
@@ -168,7 +168,7 @@ cvox.MathUtil.isTables = function(element) {
/**
* Array of MathML Elementary Layout Schemata.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.ELEMENTARY_LIST = ['MSTACK', 'MLONGDIV', 'MSGROUP', 'MSROW',
'MSCARRIES', 'MSCARRY', 'MSLINE'];
@@ -197,7 +197,7 @@ cvox.MathUtil.isElementary = function(element) {
/**
* Array of all valid tags in a MathML expression.
* This is a union of all other token lists.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.MATHML_TAG_LIST = [cvox.MathUtil.TOKEN_LIST,
cvox.MathUtil.LAYOUT_LIST,
@@ -221,7 +221,7 @@ cvox.MathUtil.isMathmlTag = function(element) {
/**
* Array of MathML Whitespace and Alignment tokens.
* These are elements that can occur in the other token lists.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
*/
cvox.MathUtil.WHITESPACE_LIST = ['MSROW', 'MROW', 'MSPACE',
'MPHANTOM', 'MPADDED'];

Powered by Google App Engine
This is Rietveld 408576698