<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Unexpected exception assigning to this._property inside arrow function"
   href="https://bugs.webkit.org/show_bug.cgi?id=152028">152028</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Unexpected exception assigning to this._property inside arrow function
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>WebKit
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>WebKit Nightly Build
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>Normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P2
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>JavaScriptCore
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>webkit-unassigned&#64;lists.webkit.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>joepeck&#64;webkit.org
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>bburg&#64;apple.com, ggaren&#64;apple.com, gskachkov&#64;gmail.com, mattbaker&#64;apple.com, sbarati&#64;apple.com
          </td>
        </tr>

        <tr>
          <th>Blocks</th>
          <td>140855
          </td>
        </tr></table>
      <p>
        <div>
        <pre>* SUMMARY
Unexpected exception assigning to this._property inside arrow function.

&quot;TypeError: Attempted to assign to readonly property.&quot; is thrown when attempting to do something like &quot;this._property = value&quot; inside of an arrow function. I do not expect this to happen. &quot;this&quot; itself might be readonly, but &quot;this._property&quot; should writeable.

* TEST
&lt;script&gt;
&quot;use strict&quot;;
class Logger {
    constructor() {
        this._id = undefined;
    }
    scheduleLog() {
        if (this._id) return;
        this._id = requestAnimationFrame(() =&gt; {
            this._id = undefined;
            console.log(&quot;Logged!&quot;);
        });
    }
}

var logger = new Logger;
logger.scheduleLog();
&lt;/script&gt;

* STEPS TO REPRODUCE
1. Load the test case above
  =&gt; Unexpected exception</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>