<html>
<head>
<base href="https://bugs.webkit.org/" />
</head>
<body><span class="vcard"><a class="email" href="mailto:joepeck@webkit.org" title="Joseph Pecoraro <joepeck@webkit.org>"> <span class="fn">Joseph Pecoraro</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - ES6 Class syntax. Invoking method of parent class in constructor before super() lead to crash"
href="https://bugs.webkit.org/show_bug.cgi?id=152108">bug 152108</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">CC</td>
<td>
</td>
<td>joepeck@webkit.org
</td>
</tr>
<tr>
<td style="text-align:right;">Assignee</td>
<td>webkit-unassigned@lists.webkit.org
</td>
<td>joepeck@webkit.org
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - ES6 Class syntax. Invoking method of parent class in constructor before super() lead to crash"
href="https://bugs.webkit.org/show_bug.cgi?id=152108#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - ES6 Class syntax. Invoking method of parent class in constructor before super() lead to crash"
href="https://bugs.webkit.org/show_bug.cgi?id=152108">bug 152108</a>
from <span class="vcard"><a class="email" href="mailto:joepeck@webkit.org" title="Joseph Pecoraro <joepeck@webkit.org>"> <span class="fn">Joseph Pecoraro</span></a>
</span></b>
<pre>(In reply to <a href="show_bug.cgi?id=152108#c0">comment #0</a>)
<span class="quote">> Invoking method of parent class in constructor before super() lead to crash.</span >
>
<span class="quote">> class B extends A {
> constructor () {
> let _value = super.getValue();
> super();
> this.value = _value;
> }
> }</span >
I think this was supposed to be an arrow function:
let _value = () => { super.getValue() };
_value();
super();
At least Based on the FIXME in the LayoutTests/js test.
However, it looks like this has been fixed! Lets enable the test to ensure we get a bit extra coverage and remove the FIXMEs in LayoutTests.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>