@@ -1313,24 +1313,23 @@ module ts {
1313
1313
SetAccessor = 0x00010000 , // Set accessor
1314
1314
Signature = 0x00020000 , // Call, construct, or index signature
1315
1315
TypeParameter = 0x00040000 , // Type parameter
1316
- TypeGuardType = 0x00080000 , // Type-guard type
1317
- TypeAlias = 0x00100000 , // Type alias
1318
- ExportValue = 0x00200000 , // Exported value marker (see comment in declareModuleMember in binder)
1319
- ExportType = 0x00400000 , // Exported type marker (see comment in declareModuleMember in binder)
1320
- ExportNamespace = 0x00800000 , // Exported namespace marker (see comment in declareModuleMember in binder)
1321
- Alias = 0x01000000 , // An alias for another symbol (see comment in isAliasSymbolDeclaration in checker)
1322
- Instantiated = 0x02000000 , // Instantiated symbol
1323
- Merged = 0x04000000 , // Merged symbol (created during program binding)
1324
- Transient = 0x08000000 , // Transient symbol (created during type check)
1325
- Prototype = 0x10000000 , // Prototype property (no source representation)
1326
- UnionProperty = 0x20000000 , // Property in union type
1327
- Optional = 0x40000000 , // Optional property
1328
- ExportStar = 0x80000000 , // Export * declaration
1316
+ TypeAlias = 0x00080000 , // Type alias
1317
+ ExportValue = 0x00100000 , // Exported value marker (see comment in declareModuleMember in binder)
1318
+ ExportType = 0x00200000 , // Exported type marker (see comment in declareModuleMember in binder)
1319
+ ExportNamespace = 0x00400000 , // Exported namespace marker (see comment in declareModuleMember in binder)
1320
+ Alias = 0x00800000 , // An alias for another symbol (see comment in isAliasSymbolDeclaration in checker)
1321
+ Instantiated = 0x01000000 , // Instantiated symbol
1322
+ Merged = 0x02000000 , // Merged symbol (created during program binding)
1323
+ Transient = 0x04000000 , // Transient symbol (created during type check)
1324
+ Prototype = 0x08000000 , // Prototype property (no source representation)
1325
+ UnionProperty = 0x10000000 , // Property in union type
1326
+ Optional = 0x20000000 , // Optional property
1327
+ ExportStar = 0x40000000 , // Export * declaration
1329
1328
1330
1329
Enum = RegularEnum | ConstEnum ,
1331
1330
Variable = FunctionScopedVariable | BlockScopedVariable ,
1332
1331
Value = Variable | Property | EnumMember | Function | Class | Enum | ValueModule | Method | GetAccessor | SetAccessor ,
1333
- Type = Class | Interface | Enum | TypeLiteral | ObjectLiteral | TypeParameter | TypeAlias | TypeGuardType ,
1332
+ Type = Class | Interface | Enum | TypeLiteral | ObjectLiteral | TypeParameter | TypeAlias ,
1334
1333
Namespace = ValueModule | NamespaceModule ,
1335
1334
Module = ValueModule | NamespaceModule ,
1336
1335
Accessor = GetAccessor | SetAccessor ,
@@ -1357,7 +1356,6 @@ module ts {
1357
1356
GetAccessorExcludes = Value & ~ SetAccessor ,
1358
1357
SetAccessorExcludes = Value & ~ GetAccessor ,
1359
1358
TypeParameterExcludes = Type & ~ TypeParameter ,
1360
- TypeGuardTypeExcludes = Type & ~ TypeGuardType ,
1361
1359
TypeAliasExcludes = Type ,
1362
1360
AliasExcludes = Alias ,
1363
1361
0 commit comments