<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Invoking super()/super inside of the eval should not lead to SyntaxError"
   href="https://bugs.webkit.org/show_bug.cgi?id=153864#c9">Comment # 9</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Invoking super()/super inside of the eval should not lead to SyntaxError"
   href="https://bugs.webkit.org/show_bug.cgi?id=153864">bug 153864</a>
              from <span class="vcard"><a class="email" href="mailto:sbarati&#64;apple.com" title="Saam Barati &lt;sbarati&#64;apple.com&gt;"> <span class="fn">Saam Barati</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=153864#c8">comment #8</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=274093&amp;action=diff" name="attach_274093" title="Patch">attachment 274093</a> <a href="attachment.cgi?id=274093&amp;action=edit" title="Patch">[details]</a></span>
&gt; Patch
&gt; 
&gt; View in context:
&gt; <a href="https://bugs.webkit.org/attachment.cgi?id=274093&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=274093&amp;action=review</a>
&gt; 
&gt; &gt;&gt; Source/JavaScriptCore/ChangeLog:3
&gt; &gt;&gt; +        Invoking super()/super inside of the eval should not lead to SyntaxError
&gt; &gt; 
&gt; &gt; Do we have a bug open for new.target inside eval?
&gt; 
&gt; Yes, I did this recently
&gt;  <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [ES6] Class syntax. Access to new.target inside of the eval should not lead to SyntaxError"
   href="show_bug.cgi?id=155545">https://bugs.webkit.org/show_bug.cgi?id=155545</a>
&gt; 
&gt; &gt;&gt;&gt; Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp:643
&gt; &gt;&gt;&gt; +    if (needsToUpdateArrowFunctionContext() &amp;&amp; !codeBlock-&gt;isArrowFunctionContext() &amp;&amp; !isDerivedConstructorContext()) {
&gt; &gt;&gt; 
&gt; &gt;&gt; Why the &quot;!isDerivedConstructorContext()&quot; check?
&gt; &gt; 
&gt; &gt; Ah, I guess it's that way so we don't recreate a scope. I think I understand.
&gt; 
&gt; Yes, that is correct. It is for this case: 
&gt; class C {};
&gt; class D extends C {
&gt;   constructor() {
&gt;     eval(&quot;(()=&gt;super())()&quot;);//Error
&gt;   }
&gt; }
&gt; new D();
&gt; Otherwise we will have two context scope for 'this'. I've spend last three
&gt; evenings to find out why mention simple test case did not work
&gt; 
&gt; &gt;&gt; Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp:4145
&gt; &gt;&gt; +    return m_scopeNode-&gt;doAnyInnerArrowFunctionsUseNewTarget() || m_scopeNode-&gt;doAnyInnerArrowFunctionsUseSuperCall() || m_scopeNode-&gt;doAnyInnerArrowFunctionsUseEval() || m_codeBlock-&gt;usesEval();
&gt; &gt; 
&gt; &gt; I believe m_codeBlock-&gt;usesEval() should always be true if m_scopeNode-&gt;doAnyInnerAroowFunctionsUseEval().
&gt; &gt; You should double check though.
&gt; 
&gt; It is true, but unfortunately this patch cover cases when we do not have
&gt; arrow function, for instance from previous comments, so I need to check
&gt; m_codeBlock-&gt;usesEval(). Possible we need to change name of the function
&gt; isNewTargetUsedInInnerArrowFunction -&gt;
&gt; isNewTargetUsedInInnerArrowFunctionOrEval</span >

What I mean is shouldn't it be sufficient to just check m_codeBlock-&gt;usesEval()?
It should never be the case that m_scopeNode-&gt;innerArrowEval() is true but m_codeBlock-&gt;usesEval() is false.
Therefore, m_codeBlock-&gt;usesEval() should cover everything.</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>