summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/no-unused-labels.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-10-25 12:48:14 -0700
committercjihrig <cjihrig@gmail.com>2019-10-28 09:51:24 -0400
commit511f67bcb42b59c9a3a3efab8fed578db100afe1 (patch)
tree8b64f390dd727dd739fd2fb84d69df3c829a9315 /tools/node_modules/eslint/lib/rules/no-unused-labels.js
parentb35181f877d5a92e8bb52eb071489f2a7d87494b (diff)
downloadandroid-node-v8-511f67bcb42b59c9a3a3efab8fed578db100afe1.tar.gz
android-node-v8-511f67bcb42b59c9a3a3efab8fed578db100afe1.tar.bz2
android-node-v8-511f67bcb42b59c9a3a3efab8fed578db100afe1.zip
tools: update ESLint to 6.6.0
Update ESLint to 6.6.0 PR-URL: https://github.com/nodejs/node/pull/30123 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/no-unused-labels.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/no-unused-labels.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/node_modules/eslint/lib/rules/no-unused-labels.js b/tools/node_modules/eslint/lib/rules/no-unused-labels.js
index 1ba1d05d5c..b33fcb7867 100644
--- a/tools/node_modules/eslint/lib/rules/no-unused-labels.js
+++ b/tools/node_modules/eslint/lib/rules/no-unused-labels.js
@@ -35,8 +35,7 @@ module.exports = {
/**
* Adds a scope info to the stack.
- *
- * @param {ASTNode} node - A node to add. This is a LabeledStatement.
+ * @param {ASTNode} node A node to add. This is a LabeledStatement.
* @returns {void}
*/
function enterLabeledScope(node) {
@@ -50,8 +49,7 @@ module.exports = {
/**
* Removes the top of the stack.
* At the same time, this reports the label if it's never used.
- *
- * @param {ASTNode} node - A node to report. This is a LabeledStatement.
+ * @param {ASTNode} node A node to report. This is a LabeledStatement.
* @returns {void}
*/
function exitLabeledScope(node) {
@@ -81,8 +79,7 @@ module.exports = {
/**
* Marks the label of a given node as used.
- *
- * @param {ASTNode} node - A node to mark. This is a BreakStatement or
+ * @param {ASTNode} node A node to mark. This is a BreakStatement or
* ContinueStatement.
* @returns {void}
*/