File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -192,8 +192,8 @@ namespace ts {
192
192
}
193
193
}
194
194
// 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.
197
197
pos = this . pos ;
198
198
forEachChild ( this , processNode , processNodes ) ;
199
199
if ( pos < this . end ) {
@@ -5027,7 +5027,7 @@ namespace ts {
5027
5027
if ( node . parent . kind === SyntaxKind . ShorthandPropertyAssignment ) {
5028
5028
return getReferenceEntryForShorthandPropertyAssignment ( node , typeChecker ) ;
5029
5029
}
5030
- else if ( node . kind === SyntaxKind . SuperKeyword || isSuperPropertyOrElementAccess ( node . parent ) ) {
5030
+ else if ( node . kind === SyntaxKind . SuperKeyword || isSuperProperty ( node . parent ) ) {
5031
5031
// References to and accesses on the super keyword only have one possible implementation, so no
5032
5032
// need to "Find all References"
5033
5033
const symbol = typeChecker . getSymbolAtLocation ( node ) ;
You can’t perform that action at this time.
0 commit comments