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

Side by Side Diff: pkg/kernel/testcases/input/void-methods.dart

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 years, 8 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 class Foo {
2 List list = [1, 2, 3];
3 set first(x) => list[0] = x;
4 operator []=(x, y) => list[x] = y;
5 void clear() => list.clear();
6 }
7
8 main() {
9 new Foo().first = 4;
10 new Foo()[3] = 4;
11 new Foo().clear();
12 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/input/unused_methods.dart ('k') | pkg/kernel/testcases/spec-mode/DeltaBlue.baseline.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698