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

Unified Diff: test/dart_codegen/expect/core/uri.dart

Issue 1121993004: Inference through conditional expressions (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Rebase Created 5 years, 7 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 | « test/dart_codegen/expect/core/stopwatch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/core/uri.dart
diff --git a/test/dart_codegen/expect/core/uri.dart b/test/dart_codegen/expect/core/uri.dart
index 8e63e8a8fb305b0f9385f3b13af11072cb5f4173..c687a667c3e74dc273c4367371af216c8e0a34f2 100644
--- a/test/dart_codegen/expect/core/uri.dart
+++ b/test/dart_codegen/expect/core/uri.dart
@@ -274,7 +274,7 @@ part of dart.core;
bool windows}
) {
windows = windows == null ? Uri._isWindows : windows;
- return ((__x21) => DEVC$RT.cast(__x21, dynamic, Uri, "DynamicCast", """line 698, column 12 of dart:core/uri.dart: """, __x21 is Uri, true))(windows ? _makeWindowsFileUrl(path) : _makeFileUri(path));
+ return windows ? ((__x20) => DEVC$RT.cast(__x20, dynamic, Uri, "DynamicCast", """line 698, column 22 of dart:core/uri.dart: """, __x20 is Uri, true))(_makeWindowsFileUrl(path)) : ((__x21) => DEVC$RT.cast(__x21, dynamic, Uri, "DynamicCast", """line 698, column 50 of dart:core/uri.dart: """, __x21 is Uri, true))(_makeFileUri(path));
}
external static Uri get base;
external static bool get _isWindows;
« no previous file with comments | « test/dart_codegen/expect/core/stopwatch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698