From 8fc6640f552eb9e5cbbd45e04ea5ccb3aa659b75 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 23 Apr 2019 17:33:54 -0400 Subject: [PATCH] Rename _objectLiteralBrandBrand to _objectLiteralBrand. (#30797) --- lib/tsserverlibrary.d.ts | 2 +- lib/typescript.d.ts | 2 +- lib/typescriptServices.d.ts | 2 +- src/compiler/types.ts | 2 +- tests/baselines/reference/api/tsserverlibrary.d.ts | 2 +- tests/baselines/reference/api/typescript.d.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/tsserverlibrary.d.ts b/lib/tsserverlibrary.d.ts index e99261be3f3..cb035b63293 100644 --- a/lib/tsserverlibrary.d.ts +++ b/lib/tsserverlibrary.d.ts @@ -626,7 +626,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/lib/typescript.d.ts b/lib/typescript.d.ts index d7b49496053..907cdf39144 100644 --- a/lib/typescript.d.ts +++ b/lib/typescript.d.ts @@ -626,7 +626,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/lib/typescriptServices.d.ts b/lib/typescriptServices.d.ts index 6b5bd1778e6..64211e8254d 100644 --- a/lib/typescriptServices.d.ts +++ b/lib/typescriptServices.d.ts @@ -626,7 +626,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 0b952a4d009..b421efa19e0 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -946,7 +946,7 @@ namespace ts { } export interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } diff --git a/tests/baselines/reference/api/tsserverlibrary.d.ts b/tests/baselines/reference/api/tsserverlibrary.d.ts index 96849689328..5d5472e8405 100644 --- a/tests/baselines/reference/api/tsserverlibrary.d.ts +++ b/tests/baselines/reference/api/tsserverlibrary.d.ts @@ -628,7 +628,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/tests/baselines/reference/api/typescript.d.ts b/tests/baselines/reference/api/typescript.d.ts index b27d270a3ba..e8e2bed3bb8 100644 --- a/tests/baselines/reference/api/typescript.d.ts +++ b/tests/baselines/reference/api/typescript.d.ts @@ -628,7 +628,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */