summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/with-runtime-babel.js
blob: 4dca494cb3f4ad078c6f7c7dfd2fae53247ce2df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
    }
  };
});