Comment #2 on issue 3659 by [email protected]: Classes: Make sure function
name inferrer works
https://code.google.com/p/v8/issues/detail?id=3659
Given
class B {
m() {
throw new Error()
}
}
class C extends B {
m() {
super.m();
}
}
class D extends C {
m() {
super.m();
}
}
class E extends D {
m() {
super.m();
}
}
new E().m();
The stack trace we currently get is:
Error
at E.m (test.js:21:11)
at E.m (test.js:27:11)
at E.m (test.js:32:11)
at E.m (test.js:37:11)
at test.js:41:9
Which is not very useful
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.