File tree 4 files changed +9
-3
lines changed
tests/baselines/reference/api
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5757,7 +5757,7 @@ namespace ts {
5757
5757
5758
5758
if (expectsIdentifier && chain.length !== 1
5759
5759
&& !context.encounteredError
5760
- && !(context.flags & NodeBuilderFlags.AllowQualifedNameInPlaceOfIdentifier )) {
5760
+ && !(context.flags & NodeBuilderFlags.AllowQualifiedNameInPlaceOfIdentifier )) {
5761
5761
context.encounteredError = true;
5762
5762
}
5763
5763
return createEntityNameFromSymbolChain(chain, chain.length - 1);
Original file line number Diff line number Diff line change @@ -4289,7 +4289,9 @@ namespace ts {
4289
4289
4290
4290
// Error handling
4291
4291
AllowThisInObjectLiteral = 1 << 15 ,
4292
- AllowQualifedNameInPlaceOfIdentifier = 1 << 16 ,
4292
+ AllowQualifiedNameInPlaceOfIdentifier = 1 << 16 ,
4293
+ /** @deprecated AllowQualifedNameInPlaceOfIdentifier. Use AllowQualifiedNameInPlaceOfIdentifier instead. */
4294
+ AllowQualifedNameInPlaceOfIdentifier = AllowQualifiedNameInPlaceOfIdentifier ,
4293
4295
AllowAnonymousIdentifier = 1 << 17 ,
4294
4296
AllowEmptyUnionOrIntersection = 1 << 18 ,
4295
4297
AllowEmptyTuple = 1 << 19 ,
@@ -4300,7 +4302,7 @@ namespace ts {
4300
4302
AllowNodeModulesRelativePaths = 1 << 26 ,
4301
4303
/* @internal */ DoNotIncludeSymbolChain = 1 << 27 , // Skip looking up and printing an accessible symbol chain
4302
4304
4303
- IgnoreErrors = AllowThisInObjectLiteral | AllowQualifedNameInPlaceOfIdentifier | AllowAnonymousIdentifier | AllowEmptyUnionOrIntersection | AllowEmptyTuple | AllowEmptyIndexInfoType | AllowNodeModulesRelativePaths ,
4305
+ IgnoreErrors = AllowThisInObjectLiteral | AllowQualifiedNameInPlaceOfIdentifier | AllowAnonymousIdentifier | AllowEmptyUnionOrIntersection | AllowEmptyTuple | AllowEmptyIndexInfoType | AllowNodeModulesRelativePaths ,
4304
4306
4305
4307
// State
4306
4308
InObjectTypeLiteral = 1 << 22 ,
Original file line number Diff line number Diff line change @@ -2261,6 +2261,8 @@ declare namespace ts {
2261
2261
NoTypeReduction = 536870912,
2262
2262
NoUndefinedOptionalParameterType = 1073741824,
2263
2263
AllowThisInObjectLiteral = 32768,
2264
+ AllowQualifiedNameInPlaceOfIdentifier = 65536,
2265
+ /** @deprecated AllowQualifedNameInPlaceOfIdentifier. Use AllowQualifiedNameInPlaceOfIdentifier instead. */
2264
2266
AllowQualifedNameInPlaceOfIdentifier = 65536,
2265
2267
AllowAnonymousIdentifier = 131072,
2266
2268
AllowEmptyUnionOrIntersection = 262144,
Original file line number Diff line number Diff line change @@ -2261,6 +2261,8 @@ declare namespace ts {
2261
2261
NoTypeReduction = 536870912 ,
2262
2262
NoUndefinedOptionalParameterType = 1073741824 ,
2263
2263
AllowThisInObjectLiteral = 32768 ,
2264
+ AllowQualifiedNameInPlaceOfIdentifier = 65536 ,
2265
+ /** @deprecated AllowQualifedNameInPlaceOfIdentifier. Use AllowQualifiedNameInPlaceOfIdentifier instead. */
2264
2266
AllowQualifedNameInPlaceOfIdentifier = 65536 ,
2265
2267
AllowAnonymousIdentifier = 131072 ,
2266
2268
AllowEmptyUnionOrIntersection = 262144 ,
You can’t perform that action at this time.
0 commit comments