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

Side by Side Diff: pkg/front_end/testcases/inference/map_literals.dart.dartk.expect

Issue 2900753002: Update status and expectations. (Closed)
Patch Set: Created 3 years, 7 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
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 static method test1() → dynamic {
6 dynamic x = <dynamic, dynamic>{1: "x", 2: "y"};
7 x.[]=(3, "z");
8 x.[]=("hi", "w");
9 x.[]=(4.0, "u");
10 x.[]=(3, 42);
11 core::Map<dynamic, dynamic> y = x;
12 }
13 static method test2() → dynamic {
14 dynamic x = <dynamic, dynamic>{1: "x", 2: "y", 3.0: throw new core::NoSuchMeth odError::•(null, #RegExp, <dynamic>["."], <dynamic, dynamic>{}, null)};
15 x.[]=(3, "z");
16 x.[]=("hi", "w");
17 x.[]=(4.0, "u");
18 x.[]=(3, 42);
19 core::Pattern p = null;
20 x.[]=(2, p);
21 core::Map<dynamic, dynamic> y = x;
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698