typescript 5.3.0-dev.20231025 → 5.3.0-dev.20231026

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4752,32 +4752,32 @@ declare namespace ts {
4752
4752
  }
4753
4753
  enum ModifierFlags {
4754
4754
  None = 0,
4755
- Export = 1,
4756
- Ambient = 2,
4757
- Public = 4,
4758
- Private = 8,
4759
- Protected = 16,
4760
- Static = 32,
4761
- Readonly = 64,
4762
- Accessor = 128,
4763
- Abstract = 256,
4764
- Async = 512,
4765
- Default = 1024,
4766
- Const = 2048,
4767
- HasComputedJSDocModifiers = 4096,
4768
- Deprecated = 8192,
4769
- Override = 16384,
4770
- In = 32768,
4771
- Out = 65536,
4772
- Decorator = 131072,
4755
+ Public = 1,
4756
+ Private = 2,
4757
+ Protected = 4,
4758
+ Readonly = 8,
4759
+ Override = 16,
4760
+ Export = 32,
4761
+ Abstract = 64,
4762
+ Ambient = 128,
4763
+ Static = 256,
4764
+ Accessor = 512,
4765
+ Async = 1024,
4766
+ Default = 2048,
4767
+ Const = 4096,
4768
+ In = 8192,
4769
+ Out = 16384,
4770
+ Decorator = 32768,
4771
+ Deprecated = 65536,
4772
+ HasComputedJSDocModifiers = 268435456,
4773
4773
  HasComputedFlags = 536870912,
4774
- AccessibilityModifier = 28,
4775
- ParameterPropertyModifier = 16476,
4776
- NonPublicAccessibilityModifier = 24,
4777
- TypeScriptModifier = 117086,
4778
- ExportDefault = 1025,
4779
- All = 258047,
4780
- Modifier = 126975,
4774
+ AccessibilityModifier = 7,
4775
+ ParameterPropertyModifier = 31,
4776
+ NonPublicAccessibilityModifier = 6,
4777
+ TypeScriptModifier = 28895,
4778
+ ExportDefault = 2080,
4779
+ All = 131071,
4780
+ Modifier = 98303,
4781
4781
  }
4782
4782
  enum JsxFlags {
4783
4783
  None = 0,
@@ -6778,6 +6778,7 @@ declare namespace ts {
6778
6778
  isUndefinedSymbol(symbol: Symbol): boolean;
6779
6779
  isArgumentsSymbol(symbol: Symbol): boolean;
6780
6780
  isUnknownSymbol(symbol: Symbol): boolean;
6781
+ getMergedSymbol(symbol: Symbol): Symbol;
6781
6782
  getConstantValue(node: EnumMember | PropertyAccessExpression | ElementAccessExpression): string | number | undefined;
6782
6783
  isValidPropertyAccess(node: PropertyAccessExpression | QualifiedName | ImportTypeNode, propertyName: string): boolean;
6783
6784
  /** Follow all aliases to get the original symbol. */