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

Unified Diff: pkg/front_end/testcases/inference/assert.dart

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
Index: pkg/front_end/testcases/inference/assert.dart
diff --git a/pkg/front_end/testcases/inference/assert.dart b/pkg/front_end/testcases/inference/assert.dart
index b1d500fcdb2e0fb3874c60c1a19f5b759ff90dfa..57e15ba44d9bfb8a8115479b3699512b40f1829c 100644
--- a/pkg/front_end/testcases/inference/assert.dart
+++ b/pkg/front_end/testcases/inference/assert.dart
@@ -8,8 +8,8 @@ library test;
T f<T>() => null;
void test() {
- assert(/*@typeArgs=dynamic*/ f());
- assert(/*@typeArgs=dynamic*/ f(), /*@typeArgs=dynamic*/ f());
+ assert(/*@typeArgs=bool*/ f());
+ assert(/*@typeArgs=bool*/ f(), /*@typeArgs=dynamic*/ f());
}
main() {}
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart ('k') | pkg/front_end/testcases/inference/assert.dart.strong.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698