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

Unified Diff: pkg/front_end/testcases/inference/assert_initializer.dart.strong.expect

Issue 2997513002: Use "bool" as the downward inference context for assert conditions. (Closed)
Patch Set: Created 3 years, 4 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 | « pkg/front_end/testcases/inference/assert_initializer.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/inference/assert_initializer.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/assert_initializer.dart.strong.expect b/pkg/front_end/testcases/inference/assert_initializer.dart.strong.expect
index 4a315f766467326fd962e72397967413a604c6aa..c56b870453b8038dff6f5cf4ac8e4f1f3ec4b2f0 100644
--- a/pkg/front_end/testcases/inference/assert_initializer.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/assert_initializer.dart.strong.expect
@@ -5,18 +5,18 @@ import "dart:core" as core;
class C extends core::Object {
constructor expressionOnly() → void
: final dynamic #t1 = () → dynamic
- assert(self::f<dynamic>());
+ assert(self::f<core::bool>());
.call(), super core::Object::•()
;
constructor expressionAndMessage() → void
: final dynamic #t2 = () → dynamic
- assert(self::f<dynamic>(), self::f<dynamic>());
+ assert(self::f<core::bool>(), self::f<dynamic>());
.call(), super core::Object::•()
;
}
static method f<T extends core::Object>() → self::f::T
return null;
static method main() → dynamic {
- assert(self::f<dynamic>());
- assert(self::f<dynamic>(), self::f<dynamic>());
+ assert(self::f<core::bool>());
+ assert(self::f<core::bool>(), self::f<dynamic>());
}
« no previous file with comments | « pkg/front_end/testcases/inference/assert_initializer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698