Files
babel/packages/babel-plugin-proposal-optional-chaining/test/fixtures/general/super-method-call/output.js
2019-11-12 10:28:40 -06:00

18 lines
259 B
JavaScript

"use strict";
class Base {
method() {
return 'Hello!';
}
}
class Derived extends Base {
method() {
var _super$method;
return (_super$method = super.method) === null || _super$method === void 0 ? void 0 : _super$method.call(this);
}
}