update jscript tests

This commit is contained in:
Sebastian McKenzie 2015-07-23 18:48:38 +01:00
parent c4c801ffcb
commit c731d2d6dc
2 changed files with 5 additions and 11 deletions

View File

@ -1,9 +1,7 @@
"use strict";
var Test = (function () {
function Test() {
return function Test() {
babelHelpers.classCallCheck(this, Test);
}
return Test;
};
})();

View File

@ -1,15 +1,11 @@
"use strict";
var IdenticalName = (function () {
function IdenticalName(x) {
return function IdenticalName(x) {
return x;
}
return IdenticalName;
};
})();
(function () {
function foo() {}
return foo;
return function foo() {};
})();