You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5140,7 +5140,9 @@ namespace ts {
5140
5140
/* @internal */
5141
5141
objectFlags: ObjectFlags;
5142
5142
/* @internal */
5143
-
propertyCache: SymbolTable;// Cache of resolved properties
5143
+
propertyCache?: SymbolTable;// Cache of resolved properties
5144
+
/* @internal */
5145
+
propertyCacheWithoutObjectFunctionPropertyAugment?: SymbolTable;// Cache of resolved properties that does not augment function or object type properties
0 commit comments