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

Unified Diff: pkg/front_end/testcases/call.dart.strong.expect

Issue 2949753002: Print static types of conditional expressions. (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « no previous file | pkg/front_end/testcases/escape.dart.direct.expect » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/call.dart.strong.expect
diff --git a/pkg/front_end/testcases/call.dart.strong.expect b/pkg/front_end/testcases/call.dart.strong.expect
index baccef899944bdf1b0859aba34b7166eb3cd5306..7cc1cc55cb73e9094f0ca4fa0418bbded3b8b4bc 100644
--- a/pkg/front_end/testcases/call.dart.strong.expect
+++ b/pkg/front_end/testcases/call.dart.strong.expect
@@ -1,8 +1,3 @@
-// Too few positional arguments (call.dart:30:25)
-// Too few positional arguments (call.dart:31:30)
-// Too few positional arguments (call.dart:35:26)
-// Too few positional arguments (call.dart:36:27)
-// Too few positional arguments (call.dart:37:32)
library;
import self as self;
import "dart:core" as core;
@@ -34,8 +29,8 @@ static method main() → dynamic {
dynamic string3 = callable.{self::Callable::call}.call(1);
dynamic string4 = callable.{self::Callable::call}.call.call(1);
self::CallableGetter callableGetter = new self::CallableGetter::•();
- dynamic string5 = callableGetter.call(1);
- dynamic string6 = callableGetter.{self::CallableGetter::call}.call(1);
+ dynamic string5 = callableGetter.{self::CallableGetter::call}(1);
+ dynamic string6 = callableGetter.{self::CallableGetter::call}(1);
dynamic string7 = callableGetter.{self::CallableGetter::call}.call(1);
dynamic string8 = callableGetter.{self::CallableGetter::call}.call.call(1);
dynamic nothing1 = closure.call();
@@ -46,8 +41,8 @@ static method main() → dynamic {
dynamic nothing6 = callable.{self::Callable::call}();
dynamic nothing7 = callable.{self::Callable::call}.call();
dynamic nothing8 = callable.{self::Callable::call}.call.call();
- dynamic nothing9 = callableGetter.call();
- dynamic nothing10 = callableGetter.{self::CallableGetter::call}.call();
+ dynamic nothing9 = callableGetter.{self::CallableGetter::call}();
+ dynamic nothing10 = callableGetter.{self::CallableGetter::call}();
dynamic nothing11 = callableGetter.{self::CallableGetter::call}.call();
dynamic nothing12 = callableGetter.{self::CallableGetter::call}.call.call();
}
« no previous file with comments | « no previous file | pkg/front_end/testcases/escape.dart.direct.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698