Files
babel/test/fixtures/transformation/es6-classes-loose/super-function-fallback/expected.js
2015-03-07 01:25:18 +11:00

11 lines
190 B
JavaScript

"use strict";
var Test = (function () {
function Test() {
babelHelpers.classCallCheck(this, Test);
Function.prototype.hasOwnProperty.call(this, "test");
}
return Test;
})();