Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: test/generated_sdk/lib/async/stream_pipe.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/generated_sdk/lib/async/stream_pipe.dart
diff --git a/test/generated_sdk/lib/async/stream_pipe.dart b/test/generated_sdk/lib/async/stream_pipe.dart
index ca1164dea81bb084211ee36eaff5e128bd744228..3683719062d332df6676ca6cca5a0f7cf5ed5792 100644
--- a/test/generated_sdk/lib/async/stream_pipe.dart
+++ b/test/generated_sdk/lib/async/stream_pipe.dart
@@ -100,7 +100,7 @@ abstract class _ForwardingStream<S, T> extends Stream<T> {
// Override the following methods in subclasses to change the behavior.
void _handleData(S data, _EventSink<T> sink) {
- var outputData = data;
+ dynamic outputData = data;
sink._add(outputData);
}

Powered by Google App Engine
This is Rietveld 408576698