<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:joepeck&#64;webkit.org" title="Joseph Pecoraro &lt;joepeck&#64;webkit.org&gt;"> <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>
               &nbsp;
           </td>
           <td>joepeck&#64;webkit.org
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Assignee</td>
           <td>webkit-unassigned&#64;lists.webkit.org
           </td>
           <td>joepeck&#64;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&#64;webkit.org" title="Joseph Pecoraro &lt;joepeck&#64;webkit.org&gt;"> <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">&gt; Invoking method of parent class in constructor before super() lead to crash.</span >
&gt;
<span class="quote">&gt;   class B extends A {
&gt;      constructor () {
&gt;         let _value  = super.getValue();
&gt;         super();
&gt;         this.value = _value;
&gt;      }
&gt;   }</span >

I think this was supposed to be an arrow function:

    let _value = () =&gt; { 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>