Index: lib/runtime/dart/async.js |
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js |
index 3dcfd5f8338ae87e5d249269bd6b5c2768aa6eeb..c362e82ba403e245b33eb70885922846e7c08fd2 100644 |
--- a/lib/runtime/dart/async.js |
+++ b/lib/runtime/dart/async.js |
@@ -796,7 +796,6 @@ var async; |
class _ControllerStream extends _StreamImpl$(T) { |
_ControllerStream(controller) { |
this[_controller] = controller; |
- super._StreamImpl(); |
} |
[_createSubscription](onData, onError, onDone, cancelOnError) { |
return this[_controller][_subscribe](onData, onError, onDone, cancelOnError); |
@@ -3185,7 +3184,6 @@ var async; |
_GeneratedStreamImpl(pending) { |
this[_pending] = pending; |
this[_isUsed] = false; |
- super._StreamImpl(); |
} |
[_createSubscription](onData, onError, onDone, cancelOnError) { |
if (this[_isUsed]) |