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

Unified Diff: test/codegen/expect/misc.txt

Issue 1355893003: Rewire DDC to use the analyzer task model (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Fix for identifiers Created 5 years, 3 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: test/codegen/expect/misc.txt
diff --git a/test/codegen/expect/misc.txt b/test/codegen/expect/misc.txt
index d247049a0544c17c9895bd74c9dbb011c4570c13..80fdde9890e7a055af707d3b4d73cb2d75120781 100644
--- a/test/codegen/expect/misc.txt
+++ b/test/codegen/expect/misc.txt
@@ -1,4 +1,26 @@
// Messages from compiling misc.dart
+severe: [InvalidMethodOverride] Invalid override. The type of Base.== ((dynamic) → dynamic) is not a subtype of Object.== ((dynamic) → bool). (test/codegen/misc.dart, line 18, col 3)
+severe: [InvalidMethodOverride] Invalid override. The type of Derived.== ((dynamic) → dynamic) is not a subtype of Object.== ((dynamic) → bool). (test/codegen/misc.dart, line 24, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 47, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: toString SimpleIdentifier (test/codegen/misc.dart, line 47, col 11)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 48, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: toString SimpleIdentifier (test/codegen/misc.dart, line 48, col 13)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 49, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: toString SimpleIdentifier (test/codegen/misc.dart, line 49, col 13)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 53, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 54, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 57, col 3)
+warning: [MissingTypeError] type analysis didn't compute the type of: print SimpleIdentifier (test/codegen/misc.dart, line 59, col 3)
info: [DynamicInvoke] obj.x requires dynamic invoke (test/codegen/misc.dart, line 19, col 27)
info: [DynamicInvoke] obj.y requires dynamic invoke (test/codegen/misc.dart, line 19, col 41)
info: [DynamicInvoke] obj.z requires dynamic invoke (test/codegen/misc.dart, line 25, col 30)
+info: [DynamicInvoke] print(1.toString()) requires dynamic invoke (test/codegen/misc.dart, line 47, col 3)
+info: [DynamicInvoke] 1.toString() requires dynamic invoke (test/codegen/misc.dart, line 47, col 9)
+info: [DynamicInvoke] print(1.0.toString()) requires dynamic invoke (test/codegen/misc.dart, line 48, col 3)
+info: [DynamicInvoke] 1.0.toString() requires dynamic invoke (test/codegen/misc.dart, line 48, col 9)
+info: [DynamicInvoke] print(1.1.toString()) requires dynamic invoke (test/codegen/misc.dart, line 49, col 3)
+info: [DynamicInvoke] 1.1.toString() requires dynamic invoke (test/codegen/misc.dart, line 49, col 9)
+info: [DynamicInvoke] print(x == dynamic) requires dynamic invoke (test/codegen/misc.dart, line 53, col 3)
+info: [DynamicInvoke] print(x == Generic) requires dynamic invoke (test/codegen/misc.dart, line 54, col 3)
+info: [DynamicInvoke] print(new Generic<int>().type) requires dynamic invoke (test/codegen/misc.dart, line 57, col 3)
+info: [DynamicInvoke] print(new Derived() == new Derived()) requires dynamic invoke (test/codegen/misc.dart, line 59, col 3)

Powered by Google App Engine
This is Rietveld 408576698