mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 04:43:37 -05:00
Fix build after merging #35862
This commit is contained in:
@@ -31622,7 +31622,7 @@ namespace ts {
|
||||
const childSymbol = getSymbolAtLocation(childNode);
|
||||
if (childSymbol && childSymbol === testedFunctionSymbol) {
|
||||
// If the test was a simple identifier, the above check is sufficient
|
||||
if (isIdentifier(ifStatement.expression)) {
|
||||
if (isIdentifier(condExpr)) {
|
||||
return true;
|
||||
}
|
||||
// Otherwise we need to ensure the symbol is called on the same target
|
||||
|
||||
@@ -189,9 +189,9 @@ function A(stats: StatsBase<any>) {
|
||||
|
||||
console.log(`[Directory] ${stats.ctime}`)
|
||||
>console.log(`[Directory] ${stats.ctime}`) : void
|
||||
>console.log : (message?: any, ...optionalParams: any[]) => void
|
||||
>console.log : (...data: any[]) => void
|
||||
>console : Console
|
||||
>log : (message?: any, ...optionalParams: any[]) => void
|
||||
>log : (...data: any[]) => void
|
||||
>`[Directory] ${stats.ctime}` : string
|
||||
>stats.ctime : number
|
||||
>stats : StatsBase<any>
|
||||
|
||||
Reference in New Issue
Block a user