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/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.js
Copy file name to clipboardExpand all lines: tests/baselines/reference/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.js
Copy file name to clipboardExpand all lines: tests/baselines/reference/ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.js
Copy file name to clipboardExpand all lines: tests/baselines/reference/ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.js
-2
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,6 @@ var Point = (function () {
31
31
Point.Origin=function(){return{x: 0,y: 0};};
32
32
returnPoint;
33
33
}());
34
-
varPoint;
35
34
(function(Point){
36
35
functionOrigin(){return"";}// not an error, since not exported
37
36
})(Point||(Point={}));
@@ -46,7 +45,6 @@ var A;
46
45
returnPoint;
47
46
}());
48
47
A.Point=Point;
49
-
varPoint;
50
48
(function(Point){
51
49
functionOrigin(){return"";}// not an error since not exported
Copy file name to clipboardExpand all lines: tests/baselines/reference/TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.js
0 commit comments