You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a quick look at the repro for this - seems to relate specifically to immediately returning the property accessed from super.
Case 1:
classBase{foo(){print('base foo');}}classChildextendsBase{foo(){constparent=()=>super.foo;// note using {return super.foo;} produced same resultparent().call(this);}}newChild().foo();
eshost output:
#### JavaScriptCore, SpiderMonkey, V8 --harmony
base foo
#### Chakra, chDev
Error: Out of stack space
The following code will infinitely loop and alert "Child foo" in MS Edge. All other browsers seem to handle this correctly.
The text was updated successfully, but these errors were encountered: