Skip to content

Commit ebbce6a

Browse files
committed
Merge pull request #5800 from weswigham/master
accept baselines
2 parents fecf99c + 2198988 commit ebbce6a

8 files changed

+8
-0
lines changed

Diff for: tests/baselines/reference/decoratedDefaultExportsGetExportedAmd.js

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
1414
return c > 3 && r && Object.defineProperty(target, key, r), r;
1515
};
1616
define(["require", "exports"], function (require, exports) {
17+
"use strict";
1718
var decorator;
1819
let Foo = class {
1920
};

Diff for: tests/baselines/reference/decoratedDefaultExportsGetExportedCommonjs.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export default class Foo {}
77

88

99
//// [decoratedDefaultExportsGetExportedCommonjs.js]
10+
"use strict";
1011
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
1112
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1213
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);

Diff for: tests/baselines/reference/decoratedDefaultExportsGetExportedSystem.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default class Foo {}
88

99
//// [decoratedDefaultExportsGetExportedSystem.js]
1010
System.register([], function(exports_1) {
11+
"use strict";
1112
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
1213
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1314
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);

Diff for: tests/baselines/reference/decoratedDefaultExportsGetExportedUmd.js

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
2121
define(["require", "exports"], factory);
2222
}
2323
})(function (require, exports) {
24+
"use strict";
2425
var decorator;
2526
let Foo = class {
2627
};

Diff for: tests/baselines/reference/defaultExportsGetExportedAmd.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export default class Foo {}
44

55
//// [defaultExportsGetExportedAmd.js]
66
define(["require", "exports"], function (require, exports) {
7+
"use strict";
78
class Foo {
89
}
910
exports.default = Foo;

Diff for: tests/baselines/reference/defaultExportsGetExportedCommonjs.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export default class Foo {}
33

44

55
//// [defaultExportsGetExportedCommonjs.js]
6+
"use strict";
67
class Foo {
78
}
89
exports.default = Foo;

Diff for: tests/baselines/reference/defaultExportsGetExportedSystem.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export default class Foo {}
44

55
//// [defaultExportsGetExportedSystem.js]
66
System.register([], function(exports_1) {
7+
"use strict";
78
var Foo;
89
return {
910
setters:[],

Diff for: tests/baselines/reference/defaultExportsGetExportedUmd.js

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export default class Foo {}
1111
define(["require", "exports"], factory);
1212
}
1313
})(function (require, exports) {
14+
"use strict";
1415
class Foo {
1516
}
1617
exports.default = Foo;

0 commit comments

Comments
 (0)