Re: [whatwg/streams] Lookup methods in constructors (#860)

ricea commented on this pull request.



>    try {
-    return Promise.resolve(exports.InvokeOrNoop(O, P, args));
-  } catch (returnValueE) {
-    return Promise.reject(returnValueE);
+    return Promise.resolve(Call(F, V, args));
+  } catch (value) {
+    return Promise.reject(value);
+  }
+};
+
+exports.GetMethod = (V, methodName) => {

It turns out TransformStream still needs it to look up the "transform" method.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/860#discussion_r154357606

Received on Friday, 1 December 2017 14:29:39 UTC