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

Unified Diff: sdk/lib/io/stdio.dart

Issue 2708343002: [dart:io][windows] Fix analyzer warning for last commit (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/stdio.dart
diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
index 8c08023eff9afbc169b9026570ae7c72fe81368c..07218db89440c42dbed99c32ec526c56246b8d15 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -275,7 +275,9 @@ class _StdSinkHelper implements IOSink {
void set _translation(_FileTranslation t) {
if (_isTranslatable) {
- _sink._target._file.translation = t;
+ _IOSinkImpl sink = _sink;
+ _StdConsumer target = sink._target;
+ target._file.translation = t;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698