summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js')
-rw-r--r--tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js20
1 files changed, 8 insertions, 12 deletions
diff --git a/tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js b/tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js
index 2ca6dbc1e5..35a4cb2dac 100644
--- a/tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js
+++ b/tools/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js
@@ -17,7 +17,7 @@ const debug = require("debug")("eslint:code-path");
/**
* Gets id of a given segment.
- * @param {CodePathSegment} segment - A segment to get.
+ * @param {CodePathSegment} segment A segment to get.
* @returns {string} Id of the segment.
*/
/* istanbul ignore next */
@@ -39,18 +39,16 @@ module.exports = {
/**
* Dumps given objects.
- *
- * @param {...any} args - objects to dump.
+ * @param {...any} args objects to dump.
* @returns {void}
*/
dump: debug,
/**
* Dumps the current analyzing state.
- *
- * @param {ASTNode} node - A node to dump.
- * @param {CodePathState} state - A state to dump.
- * @param {boolean} leaving - A flag whether or not it's leaving
+ * @param {ASTNode} node A node to dump.
+ * @param {CodePathState} state A state to dump.
+ * @param {boolean} leaving A flag whether or not it's leaving
* @returns {void}
*/
dumpState: !debug.enabled ? debug : /* istanbul ignore next */ function(node, state, leaving) {
@@ -73,8 +71,7 @@ module.exports = {
/**
* Dumps a DOT code of a given code path.
* The DOT code can be visialized with Graphvis.
- *
- * @param {CodePath} codePath - A code path to dump.
+ * @param {CodePath} codePath A code path to dump.
* @returns {void}
* @see http://www.graphviz.org
* @see http://www.webgraphviz.com
@@ -139,9 +136,8 @@ module.exports = {
/**
* Makes a DOT code of a given code path.
* The DOT code can be visialized with Graphvis.
- *
- * @param {CodePath} codePath - A code path to make DOT.
- * @param {Object} traceMap - Optional. A map to check whether or not segments had been done.
+ * @param {CodePath} codePath A code path to make DOT.
+ * @param {Object} traceMap Optional. A map to check whether or not segments had been done.
* @returns {string} A DOT code of the code path.
*/
makeDotArrows(codePath, traceMap) {