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

Side by Side Diff: test/codegen/expect/methods.txt

Issue 1235503010: fixes #219, able to compile multiple entry points (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 // Messages from compiling methods.dart 1 // Messages from compiling methods.dart
2 warning: line 14, column 21 of test/codegen/methods.dart: [DownCastImplicit] b ( num) will need runtime check to cast to type int 2 warning: [DownCastImplicit] b (num) will need runtime check to cast to type int (test/codegen/methods.dart, line 14, col 21)
3 int z([num b]) => b; 3 warning: [DownCastImplicit] a + b (num) will need runtime check to cast to type int (test/codegen/methods.dart, line 19, col 12)
4 ^ 4 info: [DynamicInvoke] f.bar("Bar's call method!") requires dynamic invoke (test/ codegen/methods.dart, line 49, col 3)
5 warning: line 19, column 12 of test/codegen/methods.dart: [DownCastImplicit] a + b (num) will need runtime check to cast to type int 5 info: [DynamicInvoke] aa.x requires dynamic invoke (test/codegen/methods.dart, l ine 57, col 11)
6 return a + b;
7 ^^^^^
8 info: line 49, column 3 of test/codegen/methods.dart: [DynamicInvoke] f.bar("Bar 's call method!") requires dynamic invoke
9 f.bar("Bar's call method!");
10 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 info: line 57, column 11 of test/codegen/methods.dart: [DynamicInvoke] aa.x requ ires dynamic invoke
12 var h = aa.x;
13 ^^^^
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698