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

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

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

Powered by Google App Engine
This is Rietveld 408576698