summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/source-code/source-code.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/source-code/source-code.js')
-rw-r--r--tools/node_modules/eslint/lib/source-code/source-code.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/node_modules/eslint/lib/source-code/source-code.js b/tools/node_modules/eslint/lib/source-code/source-code.js
index 42e7b0c2f4..86a56803ed 100644
--- a/tools/node_modules/eslint/lib/source-code/source-code.js
+++ b/tools/node_modules/eslint/lib/source-code/source-code.js
@@ -86,13 +86,13 @@ class SourceCode extends TokenStore {
/**
* Represents parsed source code.
- * @param {string|Object} textOrConfig - The source code text or config object.
- * @param {string} textOrConfig.text - The source code text.
- * @param {ASTNode} textOrConfig.ast - The Program node of the AST representing the code. This AST should be created from the text that BOM was stripped.
- * @param {Object|null} textOrConfig.parserServices - The parser services.
- * @param {ScopeManager|null} textOrConfig.scopeManager - The scope of this source code.
- * @param {Object|null} textOrConfig.visitorKeys - The visitor keys to traverse AST.
- * @param {ASTNode} [astIfNoConfig] - The Program node of the AST representing the code. This AST should be created from the text that BOM was stripped.
+ * @param {string|Object} textOrConfig The source code text or config object.
+ * @param {string} textOrConfig.text The source code text.
+ * @param {ASTNode} textOrConfig.ast The Program node of the AST representing the code. This AST should be created from the text that BOM was stripped.
+ * @param {Object|null} textOrConfig.parserServices The parser services.
+ * @param {ScopeManager|null} textOrConfig.scopeManager The scope of this source code.
+ * @param {Object|null} textOrConfig.visitorKeys The visitor keys to traverse AST.
+ * @param {ASTNode} [astIfNoConfig] The Program node of the AST representing the code. This AST should be created from the text that BOM was stripped.
*/
constructor(textOrConfig, astIfNoConfig) {
let text, ast, parserServices, scopeManager, visitorKeys;
@@ -423,7 +423,7 @@ class SourceCode extends TokenStore {
isSpaceBetweenTokens(first, second) {
const text = this.text.slice(first.range[1], second.range[0]);
- return /\s/u.test(text.replace(/\/\*.*?\*\//gu, ""));
+ return /\s/u.test(text.replace(/\/\*.*?\*\//gus, ""));
}
/**