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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5824,7 +5824,7 @@ export interface Symbol {
5824
5824
/** @internal */constEnumOnlyModule: boolean|undefined;// True if module contains only const enums or other modules with only const enums
5825
5825
/** @internal */isReferenced?: SymbolFlags;// True if the symbol is referenced elsewhere. Keeps track of the meaning of a reference in case a symbol is both a type parameter and parameter.
5826
5826
/** @internal */isReplaceableByMethod?: boolean;// Can this Javascript class property be replaced by a method symbol?
5827
-
/** @internal */isAssigned?: boolean;// True if the symbol is a parameter with assignments
5827
+
/** @internal */isAssigned?: boolean;// True if the symbol is a parameter with assignments
5828
5828
/** @internal */assignmentDeclarationMembers?: Map<number,Declaration>;// detected late-bound assignment declarations associated with the symbol
0 commit comments