File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5744,8 +5744,7 @@ export const enum SymbolFlags {
5744
5744
Transient = 1 << 25 , // Transient symbol (created during type check)
5745
5745
Assignment = 1 << 26 , // Assignment treated as declaration (eg `this.prop = 1`)
5746
5746
ModuleExports = 1 << 27 , // Symbol for CommonJS `module` of `module.exports`
5747
- All = FunctionScopedVariable | BlockScopedVariable | Property | EnumMember | Function | Class | Interface | ConstEnum | RegularEnum | ValueModule | NamespaceModule | TypeLiteral
5748
- | ObjectLiteral | Method | Constructor | GetAccessor | SetAccessor | Signature | TypeParameter | TypeAlias | ExportValue | Alias | Prototype | ExportStar | Optional | Transient ,
5747
+ All = - 1 ,
5749
5748
5750
5749
Enum = RegularEnum | ConstEnum ,
5751
5750
Variable = FunctionScopedVariable | BlockScopedVariable ,
Original file line number Diff line number Diff line change @@ -7001,7 +7001,7 @@ declare namespace ts {
7001
7001
Transient = 33554432,
7002
7002
Assignment = 67108864,
7003
7003
ModuleExports = 134217728,
7004
- All = 67108863 ,
7004
+ All = -1 ,
7005
7005
Enum = 384,
7006
7006
Variable = 3,
7007
7007
Value = 111551,
You can’t perform that action at this time.
0 commit comments