Skip to content

Commit 5913a35

Browse files
committed
Updating method name that changed in master
1 parent b7071c1 commit 5913a35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/services.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ namespace ts {
192192
}
193193
}
194194
// For syntactic classifications, all trivia are classcified together, including jsdoc comments.
195-
// For that to work, the jsdoc comments should still be the leading trivia of the first child.
196-
// Restoring the scanner position ensures that.
195+
// For that to work, the jsdoc comments should still be the leading trivia of the first child.
196+
// Restoring the scanner position ensures that.
197197
pos = this.pos;
198198
forEachChild(this, processNode, processNodes);
199199
if (pos < this.end) {
@@ -5027,7 +5027,7 @@ namespace ts {
50275027
if (node.parent.kind === SyntaxKind.ShorthandPropertyAssignment) {
50285028
return getReferenceEntryForShorthandPropertyAssignment(node, typeChecker);
50295029
}
5030-
else if (node.kind === SyntaxKind.SuperKeyword || isSuperPropertyOrElementAccess(node.parent)) {
5030+
else if (node.kind === SyntaxKind.SuperKeyword || isSuperProperty(node.parent)) {
50315031
// References to and accesses on the super keyword only have one possible implementation, so no
50325032
// need to "Find all References"
50335033
const symbol = typeChecker.getSymbolAtLocation(node);

0 commit comments

Comments
 (0)