summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/with-runtime-traceur.js
blob: d86a1dea720b5be503b407457459f9b1f4bbed49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
System.register([], function($__export) {
  "use strict";
  var __moduleName = "test";
  var c;
  return {
    setters: [],
    execute: function() {
      c = $__export("c", (function() {
        var c = function c() {};
        return ($traceurRuntime.createClass)(c, {}, {});
      }()));
    }
  };
});