File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -646,12 +646,12 @@ class SourceCode extends TokenStore {
646
646
}
647
647
648
648
/**
649
- * Gets all of the declared variables in the scope associated
650
- * with `node`. This is a convenience method that passes through
649
+ * Get the variables that `node` defines.
650
+ * This is a convenience method that passes through
651
651
* to the same method on the `scopeManager`.
652
- * @param {ASTNode } node The node from which to retrieve the scope to check .
652
+ * @param {ASTNode } node The node for which the variables are obtained .
653
653
* @returns {Array<Variable> } An array of variable nodes representing
654
- * the declared variables in the scope associated with `node`.
654
+ * the variables that `node` defines .
655
655
*/
656
656
getDeclaredVariables ( node ) {
657
657
return this . scopeManager . getDeclaredVariables ( node ) ;
You can’t perform that action at this time.
0 commit comments