<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - WebRTC: Update RTCPeerConnection overloaded legacy operations to return a Promise"
   href="https://bugs.webkit.org/show_bug.cgi?id=158114#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - WebRTC: Update RTCPeerConnection overloaded legacy operations to return a Promise"
   href="https://bugs.webkit.org/show_bug.cgi?id=158114">bug 158114</a>
              from <span class="vcard"><a class="email" href="mailto:adam.bergkvist&#64;ericsson.com" title="Adam Bergkvist &lt;adam.bergkvist&#64;ericsson.com&gt;"> <span class="fn">Adam Bergkvist</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=158114#c4">comment #4</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=279879&amp;action=diff" name="attach_279879" title="Proposed patch">attachment 279879</a> <a href="attachment.cgi?id=279879&amp;action=edit" title="Proposed patch">[details]</a></span>
&gt; Proposed patch
&gt; 
&gt; View in context:
&gt; <a href="https://bugs.webkit.org/attachment.cgi?id=279879&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=279879&amp;action=review</a>
&gt; 
&gt; &gt; LayoutTests/fast/mediastream/resources/promise-utils.js:18
&gt; &gt; +function promiseShouldResolve(expr) {
&gt; 
&gt; This function is unused. Did you mean to use it, or is it for future use?</span >

It's used by other tests not yet upstreamed. I'll remove it and add it when it's needed.

[...]
<span class="quote">&gt; 
&gt; I had a hard time figuring out this logic. I think it will be clearer if you
&gt; restructure it to return early as soon as you know the arguments are valid
&gt; or illegal. For example (untested so this may not be exactly correct):
&gt; 
&gt; 
&gt; function objectAndCallbacksOverload(args, functionName, objectConstructor,
&gt; objectOptions, promiseMode, legacyMode)
&gt; {
&gt;     &quot;use strict&quot;;
&gt; 
&gt;     let argsCount = Math.min(3, args.length);
&gt;     let objectArg = args[0];
&gt;     let objectArgOk = false;
&gt; 
&gt;     if (!argsCount &amp;&amp; objectOptions.optionalAndNullable) {
&gt;         objectArg = null;
&gt;         objectArgOk = true;
&gt;         argsCount = 1;
&gt;     } else {
&gt;         const hasMatchingType = objectArg instanceof objectConstructor;
&gt;         objectArgOk = objectOptions.optionalAndNullable ? (objectArg ===
&gt; null || typeof objectArg === &quot;undefined&quot; || hasMatchingType) :
&gt; hasMatchingType;
&gt;     }
&gt; 
&gt;     if (argsCount &lt; 1)
&gt;         return &#64;Promise.&#64;reject(new &#64;TypeError(&quot;Not enough arguments&quot;));
&gt; 
&gt;     if (argsCount == 1 &amp;&amp; objectArgOk)
&gt;         return promiseMode(objectArg);
&gt; 
&gt;     if (argsCount != 3 || !objectArgOk)
&gt;         return &#64;Promise.&#64;reject(new &#64;TypeError(&quot;Type error&quot;));
&gt; 
&gt;     const successCallback = args[1];
&gt;     if (successCallback != null &amp;&amp; typeof errorCallback !== &quot;function&quot;)
&gt;         return &#64;Promise.&#64;reject(new &#64;TypeError(`Argument 2
&gt; ('successCallback') to RTCPeerConnection.${functionName} must be a
&gt; function`));
&gt; 
&gt;     const errorCallback = args[2];
&gt;     if (errorCallback != null &amp;&amp; typeof errorCallback !== &quot;function&quot;))
&gt;         return &#64;Promise.&#64;reject(new &#64;TypeError(`Argument 3 ('errorCallback')
&gt; to RTCPeerConnection.${functionName} must be a function`));
&gt; 
&gt;     return legacyMode(objectArg, successCallback, errorCallback);
&gt; }</span >

I've imitated the structure of generated bindings and I agree with you that it's not the most obvious code flow for readability. :) I've restructured the bindings in the updated patch, as you proposed. The new version is also more specific on error messages (no generic &quot;Type error&quot; messages).

[...]
<span class="quote">&gt; 
&gt; I think this would be slightly clearer if you reject for an unexpected
&gt; number of arguments immediately after getting the argument count.</span >

Se previous comment.</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>