From 0b5c8cee374e308fdf42ccafe1fedd471f1143a3 Mon Sep 17 00:00:00 2001 From: Kanchalai Tanglertsampan Date: Fri, 16 Sep 2016 14:39:21 -0700 Subject: [PATCH] Fix build break: difference result from treating things as literal type --- .../reference/commentOnDecoratedClassDeclaration.types | 4 ++-- .../reference/commentOnExportEnumDeclaration.types | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/baselines/reference/commentOnDecoratedClassDeclaration.types b/tests/baselines/reference/commentOnDecoratedClassDeclaration.types index f4850a0b7b7..170eb674453 100644 --- a/tests/baselines/reference/commentOnDecoratedClassDeclaration.types +++ b/tests/baselines/reference/commentOnDecoratedClassDeclaration.types @@ -9,7 +9,7 @@ declare function decorator(x: string): any; @decorator("hello") >decorator("hello") : any >decorator : (x: string) => any ->"hello" : string +>"hello" : "hello" class Remote { } >Remote : Remote @@ -21,7 +21,7 @@ class Remote { } @decorator("hi") >decorator("hi") : any >decorator : (x: string) => any ->"hi" : string +>"hi" : "hi" class AnotherRomote { >AnotherRomote : AnotherRomote diff --git a/tests/baselines/reference/commentOnExportEnumDeclaration.types b/tests/baselines/reference/commentOnExportEnumDeclaration.types index 522e1175540..c9f9338bbe2 100644 --- a/tests/baselines/reference/commentOnExportEnumDeclaration.types +++ b/tests/baselines/reference/commentOnExportEnumDeclaration.types @@ -6,7 +6,7 @@ export enum Color { >Color : Color r, g, b ->r : Color ->g : Color ->b : Color +>r : Color.r +>g : Color.g +>b : Color.b }