<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 - Builtin source should be minified more"
   href="https://bugs.webkit.org/show_bug.cgi?id=152290">bug 152290</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;">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 - Builtin source should be minified more"
   href="https://bugs.webkit.org/show_bug.cgi?id=152290#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Builtin source should be minified more"
   href="https://bugs.webkit.org/show_bug.cgi?id=152290">bug 152290</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>I'll handle some basic stuff, like stripping the empty comments and empty lines. I think it leads to even more readable code in the results anyways:

BEFORE:

<span class="quote">&gt; const int s_moduleLoaderObjectRequestFetchCodeLength = 669;
&gt; const char* s_moduleLoaderObjectRequestFetchCode =
&gt;     &quot;(function (key)\n&quot; \
&gt;     &quot;{\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;\n&quot; \
&gt;     &quot;    \&quot;use strict\&quot;;\n&quot; \
&gt;     &quot;\n&quot; \
&gt;     &quot;    var entry = this.ensureRegistered(key);\n&quot; \
&gt;     &quot;    if (entry.state &gt; this.Link) {\n&quot; \
&gt;     &quot;        var deferred = &#64;newPromiseCapability(&#64;InternalPromise);\n&quot; \
&gt;     &quot;        deferred.&#64;reject.&#64;call(undefined, new &#64;TypeError(\&quot;Requested module is already ready to be executed.\&quot;));\n&quot; \
&gt;     &quot;        return deferred.&#64;promise;\n&quot; \
&gt;     &quot;    }\n&quot; \
&gt;     &quot;\n&quot; \
&gt;     &quot;    if (entry.fetch)\n&quot; \
&gt;     &quot;        return entry.fetch;\n&quot; \
&gt;     &quot;\n&quot; \
&gt;     &quot;    var loader = this;\n&quot; \
&gt;     &quot;\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;    //\n&quot; \
&gt;     &quot;    var fetchPromise = this.fetch(key).then(function (payload) {\n&quot; \
&gt;     &quot;        loader.setStateToMax(entry, loader.Translate);\n&quot; \
&gt;     &quot;        return payload;\n&quot; \
&gt;     &quot;    });\n&quot; \
&gt;     &quot;    entry.fetch = fetchPromise;\n&quot; \
&gt;     &quot;    return fetchPromise;\n&quot; \
&gt;     &quot;})\n&quot; \
&gt; ;</span >

AFTER:

<span class="quote">&gt; const int s_moduleLoaderObjectRequestFetchCodeLength = 615;
&gt; const char* s_moduleLoaderObjectRequestFetchCode =
&gt;     &quot;(function (key)\n&quot; \
&gt;     &quot;{\n&quot; \
&gt;     &quot;    \&quot;use strict\&quot;;\n&quot; \
&gt;     &quot;    var entry = this.ensureRegistered(key);\n&quot; \
&gt;     &quot;    if (entry.state &gt; this.Link) {\n&quot; \
&gt;     &quot;        var deferred = &#64;newPromiseCapability(&#64;InternalPromise);\n&quot; \
&gt;     &quot;        deferred.&#64;reject.&#64;call(undefined, new &#64;TypeError(\&quot;Requested module is already ready to be executed.\&quot;));\n&quot; \
&gt;     &quot;        return deferred.&#64;promise;\n&quot; \
&gt;     &quot;    }\n&quot; \
&gt;     &quot;    if (entry.fetch)\n&quot; \
&gt;     &quot;        return entry.fetch;\n&quot; \
&gt;     &quot;    var loader = this;\n&quot; \
&gt;     &quot;    var fetchPromise = this.fetch(key).then(function (payload) {\n&quot; \
&gt;     &quot;        loader.setStateToMax(entry, loader.Translate);\n&quot; \
&gt;     &quot;        return payload;\n&quot; \
&gt;     &quot;    });\n&quot; \
&gt;     &quot;    entry.fetch = fetchPromise;\n&quot; \
&gt;     &quot;    return fetchPromise;\n&quot; \
&gt;     &quot;})\n&quot; \
&gt; ;</span >

I didn't go all out and minify everything though. I think this is a good balance.</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>