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

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

Issue 2873813002: Implement type inference of method invocations in Fasta. (Closed)
Patch Set: Created 3 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
Index: pkg/front_end/testcases/inference/infer_prefix_expression_custom.dart
diff --git a/pkg/front_end/testcases/inference/infer_prefix_expression_custom.dart b/pkg/front_end/testcases/inference/infer_prefix_expression_custom.dart
index 0a986fb23842b0868045a22a10100251be13b1ac..71ffa387d6aea63eb53c83c547524bcb6809852a 100644
--- a/pkg/front_end/testcases/inference/infer_prefix_expression_custom.dart
+++ b/pkg/front_end/testcases/inference/infer_prefix_expression_custom.dart
@@ -14,3 +14,9 @@ class A {
var /*@topType=A*/ a = new A();
var /*@topType=int*/ v_complement = ~a;
var /*@topType=double*/ v_negate = -a;
+
+main() {
+ a;
+ v_complement;
+ v_negate;
+}

Powered by Google App Engine
This is Rietveld 408576698