fix(plugin-proposal-function-bind): fix invalid code emitted for ::super.foo (#12000)

This commit is contained in:
uhyo
2020-08-25 02:35:31 +09:00
committed by GitHub
parent 941f610275
commit 76d571e285
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
class C {
foo() {
super.bar.bind(this);
super.baz.call(this, 123);
}
}