webpack/test/configCases/parsing/harmony-this/new.js

11 lines
97 B
JavaScript

function C() {
this.ok = this.pok;
}
C.prototype.pok = true;
export default C;
export {
C
};