aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/with-runtime-babel.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/with-runtime-babel.js')
-rw-r--r--thirdparty/systemjs/test/tests/with-runtime-babel.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/with-runtime-babel.js b/thirdparty/systemjs/test/tests/with-runtime-babel.js
new file mode 100644
index 000000000..4dca494cb
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/with-runtime-babel.js
@@ -0,0 +1,16 @@
+System.register([], function (_export) {
+ "use strict";
+
+ var c;
+ return {
+ setters: [],
+ execute: function () {
+ c = _export("c", function c() {
+ babelHelpers.classCallCheck(this, c);
+
+ babelHelpers.get(Object.getPrototypeOf(c.prototype), "constructor", this).call(this);
+ });
+ new c();
+ }
+ };
+}); \ No newline at end of file