mirror of https://github.com/nodejs/node.git
2 lines
282 B
JavaScript
2 lines
282 B
JavaScript
class Foo{bar(){throw Error("This is a test")}}class Bar{}Bar.prototype.bar=Foo.prototype.bar;try{const foo=new Foo;foo.bar()}catch(e){console.error(e)}try{const bar=Object.create(Bar.prototype);bar.bar()}catch(e){console.error(e)}
|
|
//# sourceMappingURL=throw-class-method.min.js.map
|