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 () {
45
45
configurable : true
46
46
} ) ;
47
47
return MyBase ;
48
- } ) ( ) ;
48
+ } ( ) ) ;
49
49
var MyDerived = ( function ( _super ) {
50
50
__extends ( MyDerived , _super ) ;
51
51
function MyDerived ( ) {
@@ -54,7 +54,7 @@ var MyDerived = (function (_super) {
54
54
var f2 = _super . prototype . value ;
55
55
}
56
56
return MyDerived ;
57
- } ) ( MyBase ) ;
57
+ } ( MyBase ) ) ;
58
58
var d = new MyDerived ( ) ;
59
59
var f3 = d . value ;
60
60
var A = ( function ( ) {
@@ -67,7 +67,7 @@ var A = (function () {
67
67
configurable : true
68
68
} ) ;
69
69
return A ;
70
- } ) ( ) ;
70
+ } ( ) ) ;
71
71
var B = ( function ( _super ) {
72
72
__extends ( B , _super ) ;
73
73
function B ( ) {
@@ -81,4 +81,4 @@ var B = (function (_super) {
81
81
configurable : true
82
82
} ) ;
83
83
return B ;
84
- } ) ( A ) ;
84
+ } ( A ) ) ;
You can’t perform that action at this time.
0 commit comments