File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -10239,7 +10239,7 @@ namespace ts {
10239
10239
const objectFlags = getObjectFlags(type);
10240
10240
return !!(type.flags & TypeFlags.TypeVariable ||
10241
10241
objectFlags & ObjectFlags.Reference && forEach((<TypeReference>type).typeArguments, couldContainTypeVariables) ||
10242
- objectFlags & ObjectFlags.Anonymous && type.symbol && type.symbol.flags & (SymbolFlags.Method | SymbolFlags.TypeLiteral | SymbolFlags.Class) ||
10242
+ objectFlags & ObjectFlags.Anonymous && type.symbol && type.symbol.flags & (SymbolFlags.Function | SymbolFlags. Method | SymbolFlags.TypeLiteral | SymbolFlags.Class) ||
10243
10243
objectFlags & ObjectFlags.Mapped ||
10244
10244
type.flags & TypeFlags.UnionOrIntersection && couldUnionOrIntersectionContainTypeVariables(<UnionOrIntersectionType>type));
10245
10245
}
You can’t perform that action at this time.
0 commit comments