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

Side by Side Diff: pkg/front_end/testcases/shaker/lib/lib.dart

Issue 2893493004: First step for modular output in fasta. (Closed)
Patch Set: cl comments 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 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /// Shaker tests verify that portions of this file are preserved and that the
6 /// rest is tree-shaken.
7 library lib;
8
9 toplevel() => null;
10
11 class _A {}
12
13 class B extends _A {}
14
15 class C extends _A {}
16
17 class K {}
18
19 class M2 {}
20
21 class M3 {}
22
23 class M1 extends Object with M2 implements M3 {}
24
25 class Bound {}
26
27 class Base<T extends Bound> {}
28
29 typedef T MyTypedef<T>(T arg);
30
31 class F {
32 K field;
33 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/shaker/include_field_type.dart.shaker ('k') | pkg/front_end/testcases/shaker/roots0.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698