File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tests/baselines/reference Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ var MyBase = (function () {
4545 configurable : true
4646 } ) ;
4747 return MyBase ;
48- } ) ( ) ;
48+ } ( ) ) ;
4949var MyDerived = ( function ( _super ) {
5050 __extends ( MyDerived , _super ) ;
5151 function MyDerived ( ) {
@@ -54,7 +54,7 @@ var MyDerived = (function (_super) {
5454 var f2 = _super . prototype . value ;
5555 }
5656 return MyDerived ;
57- } ) ( MyBase ) ;
57+ } ( MyBase ) ) ;
5858var d = new MyDerived ( ) ;
5959var f3 = d . value ;
6060var A = ( function ( ) {
@@ -67,7 +67,7 @@ var A = (function () {
6767 configurable : true
6868 } ) ;
6969 return A ;
70- } ) ( ) ;
70+ } ( ) ) ;
7171var B = ( function ( _super ) {
7272 __extends ( B , _super ) ;
7373 function B ( ) {
@@ -81,4 +81,4 @@ var B = (function (_super) {
8181 configurable : true
8282 } ) ;
8383 return B ;
84- } ) ( A ) ;
84+ } ( A ) ) ;
You can’t perform that action at this time.
0 commit comments