You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/baselines/reference/ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.types
+2-2
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ class Point {
9
9
static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246
10
10
>Origin : () => Point
11
11
>Point : Point
12
-
>{ x: 0, y: 0 } : { x: number; y: number; }
12
+
>{ x: 0, y: 0 } : { x: 0; y: 0; }
13
13
>x : number
14
14
>0 : 0
15
15
>y : number
@@ -38,7 +38,7 @@ module A {
38
38
static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246
Copy file name to clipboardExpand all lines: tests/baselines/reference/ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.types
Copy file name to clipboardExpand all lines: tests/baselines/reference/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.types
Copy file name to clipboardExpand all lines: tests/baselines/reference/ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.types
Copy file name to clipboardExpand all lines: tests/baselines/reference/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.types
Copy file name to clipboardExpand all lines: tests/baselines/reference/TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.types
+2-2
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ module A {
37
37
export var Origin: Point = { x: 0, y: 0 };
38
38
>Origin : Point
39
39
>Point : Point
40
-
>{ x: 0, y: 0 } : { x: number; y: number; }
40
+
>{ x: 0, y: 0 } : { x: 0; y: 0; }
41
41
>x : number
42
42
>0 : 0
43
43
>y : number
@@ -121,7 +121,7 @@ var p = new A.Utils.Plane(o, { x: 1, y: 1 });
0 commit comments