Chromium Code Reviews

Unified Diff: tests/lib/async/stream_state_helper.dart

Issue 12610006: Renamed StreamSink to EventSink. Renamed signalError to addError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changed inheritance back! Now create StreamSink instead of EventSink where we create them. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: tests/lib/async/stream_state_helper.dart
diff --git a/tests/lib/async/stream_state_helper.dart b/tests/lib/async/stream_state_helper.dart
index 86d71a1cdb2adde31c515f8b93fbef20958ba9c0..8f9b33fe389e617f17f215402fcf1dceeee7b365 100644
--- a/tests/lib/async/stream_state_helper.dart
+++ b/tests/lib/async/stream_state_helper.dart
@@ -33,7 +33,7 @@ class StreamProtocolTest {
// Actions on the stream and controller.
void add(var data) { _controller.add(data); }
- void error(var error) { _controller.signalError(error); }
+ void error(var error) { _controller.addError(error); }
void close() { _controller.close(); }
void subscribe({bool unsubscribeOnError : false}) {

Powered by Google App Engine