File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments