Files
sdk/pkg/dev_compiler/test/codegen/expect/methods.txt
T
Vijay Menon 74476b5e4c Log the runtime type of messages
This makes is a little easier to investigate errors.

R=sigmund@google.com

Review URL: https://codereview.chromium.org/993513005
2015-03-09 11:46:27 -07:00

11 lines
546 B
Plaintext

// Messages from compiling methods.dart
info: line 14, column 21 of test/codegen/methods.dart: [DownCast] b (num) will need runtime check to cast to type int
int z([num b]) => b;
^
info: line 19, column 12 of test/codegen/methods.dart: [DownCast] a + b (num) will need runtime check to cast to type int
return a + b;
^^^^^
warning: line 49, column 3 of test/codegen/methods.dart: [DynamicInvoke] f.bar("Bar's call method!") requires dynamic invoke
f.bar("Bar's call method!");
^^^^^^^^^^^^^^^^^^^^^^^^^^^