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

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

Issue 2980883003: Remove code associated with the old "kompile" functionality. (Closed)
Patch Set: Created 3 years, 5 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
4 static method f() → dynamic {
5 dynamic a = 0;
6 dynamic b = null;
7 dynamic c = throw "foo";
8 dynamic d = () → dynamic => 0;
9 dynamic e = () → dynamic => null;
10 dynamic f = () → dynamic => throw "foo";
11 dynamic g = () → dynamic {
12 return 0;
13 };
14 dynamic h = () → dynamic {
15 return null;
16 };
17 dynamic i = () → dynamic {
18 return throw "foo";
19 };
20 }
21 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698