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

Side by Side Diff: pkg/kernel/testcases/strong-mode/call.baseline.txt

Issue 2619193003: Insert implicit downcasts in kernel strong mode. (Closed)
Patch Set: Add missing status line Created 3 years, 11 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 // Too few positional arguments (call.dart:30:17) 1 // Too few positional arguments (call.dart:30:18)
2 // Too few positional arguments (call.dart:31:25) 2 // Too few positional arguments (call.dart:31:26)
3 // Too few positional arguments (call.dart:35:17) 3 // Too few positional arguments (call.dart:35:18)
4 // Too few positional arguments (call.dart:36:26) 4 // Too few positional arguments (call.dart:36:27)
5 // Too few positional arguments (call.dart:37:31) 5 // Too few positional arguments (call.dart:37:32)
6 library; 6 library;
7 import self as self; 7 import self as self;
8 import "dart:core" as core; 8 import "dart:core" as core;
9 9
10 class Callable extends core::Object { 10 class Callable extends core::Object {
11 constructor •() → void 11 constructor •() → void
12 : super core::Object::•() 12 : super core::Object::•()
13 ; 13 ;
14 method call(dynamic x) → dynamic { 14 method call(dynamic x) → dynamic {
15 return "string"; 15 return "string";
(...skipping 28 matching lines...) Expand all
44 dynamic nothing4 = closure.call.call.call(); 44 dynamic nothing4 = closure.call.call.call();
45 dynamic nothing5 = callable.{self::Callable::call}(); 45 dynamic nothing5 = callable.{self::Callable::call}();
46 dynamic nothing6 = callable.{self::Callable::call}(); 46 dynamic nothing6 = callable.{self::Callable::call}();
47 dynamic nothing7 = callable.{self::Callable::call}.call(); 47 dynamic nothing7 = callable.{self::Callable::call}.call();
48 dynamic nothing8 = callable.{self::Callable::call}.call.call(); 48 dynamic nothing8 = callable.{self::Callable::call}.call.call();
49 dynamic nothing9 = callableGetter.call(); 49 dynamic nothing9 = callableGetter.call();
50 dynamic nothing10 = callableGetter.{self::CallableGetter::call}.call(); 50 dynamic nothing10 = callableGetter.{self::CallableGetter::call}.call();
51 dynamic nothing11 = callableGetter.{self::CallableGetter::call}.call(); 51 dynamic nothing11 = callableGetter.{self::CallableGetter::call}.call();
52 dynamic nothing12 = callableGetter.{self::CallableGetter::call}.call.call(); 52 dynamic nothing12 = callableGetter.{self::CallableGetter::call}.call.call();
53 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698