We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following code will infinitely loop and alert "Child foo" in MS Edge. All other browsers seem to handle this correctly.
"Child foo"
class Base { foo() { alert('base foo'); } } class Child extends Base { foo() { const parent = () => super.foo; alert('Child foo'); parent().call(this); } } (new Child()).foo();
This breaks async / await transpilation with ES2015 out.
The following code will infinitely loop and alert
"Child foo"in MS Edge. All other browsers seem to handle this correctly.This breaks async / await transpilation with ES2015 out.