<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [ES6] Implement ES6 arrow function syntax. Parser of arrow function with execution as common function"
   href="https://bugs.webkit.org/show_bug.cgi?id=144955#c59">Comment # 59</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [ES6] Implement ES6 arrow function syntax. Parser of arrow function with execution as common function"
   href="https://bugs.webkit.org/show_bug.cgi?id=144955">bug 144955</a>
              from <span class="vcard"><a class="email" href="mailto:saambarati1&#64;gmail.com" title="Saam Barati &lt;saambarati1&#64;gmail.com&gt;"> <span class="fn">Saam Barati</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=144955#c58">comment #58</a>)
<span class="quote">&gt; Comment on <span class="bz_obsolete"><a href="attachment.cgi?id=254445&amp;action=diff" name="attach_254445" title="Patch">attachment 254445</a> <a href="attachment.cgi?id=254445&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=254445&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=254445&amp;action=review</a>
&gt; 
&gt; &gt;&gt; Source/JavaScriptCore/parser/Parser.cpp:607
&gt; &gt;&gt; +    bool correctArrowFinish = isEndOfArrowFunction() || match(EOFTOK);
&gt; &gt; 
&gt; &gt; `match(EOFTOK)` is contained in `isEndOfArrowFunction()`. So I think `match(EOFTOK)` is not needed. Correct?
&gt; &gt; If so, we can change it to `failIfFalse(isEndOfArrowFunction(), &quot;...&quot;);` by merging the following check.
&gt; 
&gt; Done
&gt; 
&gt; &gt;&gt; Source/JavaScriptCore/parser/Parser.cpp:608
&gt; &gt;&gt; +    failIfFalse(correctArrowFinish, &quot;Expected a ';', ']', '}', ')', or ',' following a arrow function statement&quot;);
&gt; &gt; 
&gt; &gt; it seems refering to EOF and Line terminator is needed.
&gt; 
&gt; Done
&gt; 
&gt; &gt;&gt; Source/JavaScriptCore/parser/Parser.cpp:1257
&gt; &gt;&gt; +        result = parseArrowFunctionStatement(context, parseType);
&gt; &gt; 
&gt; &gt; This `parseArrowFunctionStatement` name confuses me.
&gt; &gt; This function is used when
&gt; &gt; 
&gt; &gt; (e) `=&gt; expr;`
&gt; &gt; 
&gt; &gt; part, right? If so, I think clearer name is encouraged.
&gt; 
&gt; I've renamed it to parseArrowFunctionExpression.</span >
Is this only used when parsing the sinle expression in the body syntax?
(If not, ignore the below.)
If so, I think this is a bad name. To me it sounds like the function
is named as if it's parsing the entire arrow function as an expression.
I'd be more verbose and go with a name like &quot;parseArrowFunctionSingleExpressionBody&quot;
or something else that indicates what the function is doing without any ambiguity.</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>