<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - `const location = &quot;foo&quot;` throws in a worker"
   href="https://bugs.webkit.org/show_bug.cgi?id=169839#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - `const location = &quot;foo&quot;` throws in a worker"
   href="https://bugs.webkit.org/show_bug.cgi?id=169839">bug 169839</a>
              from <span class="vcard"><a class="email" href="mailto:cdumez&#64;apple.com" title="Chris Dumez &lt;cdumez&#64;apple.com&gt;"> <span class="fn">Chris Dumez</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=169839#c1">comment #1</a>)
<span class="quote">&gt; Created <span class=""><a href="attachment.cgi?id=304864&amp;action=diff" name="attach_304864" title="WIP patch">attachment 304864</a> <a href="attachment.cgi?id=304864&amp;action=edit" title="WIP patch">[details]</a></span>
&gt; WIP patch
&gt; 
&gt; Causes the following layout test to fail:
&gt; - js/dom/const.html (But this test also fails in Firefox and Chrome in the
&gt; same way so the test may be wrong)
&gt; 
&gt; Causes the following JSC tests to fail:
&gt; ChakraCore.yaml/ChakraCore/test/es6/
&gt; letconst_global_shadow_builtins_nonconfigurable.js.default</span >

<span class="quote">&gt; ChakraCore.yaml/ChakraCore/test/es6/
&gt; letconst_global_shadow_builtins_nonconfigurable.js.default: Expected
&gt; uncaught exception with name 'ReferenceError' but exception value is not
&gt; instance of this exception class
&gt; ChakraCore.yaml/ChakraCore/test/es6/
&gt; letconst_global_shadow_builtins_nonconfigurable.js.default: Exception:
&gt; SyntaxError: Can't create duplicate variable that shadows a global property:
&gt; 'undefined'
&gt; ChakraCore.yaml/ChakraCore/test/es6/
&gt; letconst_global_shadow_builtins_nonconfigurable.js.default: ERROR:
&gt; Unexpected exit code: 3</span >

The test looks like:
// Non-configurable global properties are not shadowable.  Instead this causes an early error.
print(undefined); // shouldn't execute
let undefined = &quot;foo&quot;;
print(undefined); // shouldn't execute

Previously, the following wouldn't throw:
let undefined = &quot;foo&quot;;

With my change, it now throws, which seems to align us with Firefox and Chrome. So I believe this is the behavior change here. However, I am not clear on what the test does with those print() statement and why it says they should not execute.</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>