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

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

Issue 3011663002: Restructure outline shaker tests. (Closed)
Patch Set: Created 3 years, 3 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.md file.
4
5 import 'lib/sources.dart';
6
7 class C1 extends A1 {}
8
9 class C2 implements A2 {}
10
11 class C3 extends Object with A3 {}
12
13 typedef A4 F1(A5 a, [A6 b]);
14 typedef A4 F2(A5 a, {A7 b});
15
16 A8 topLevelVariable1;
17 var topLevelVariable2 = A9;
18
19 A10 topLevelFunction1(A11 a, [A12 b]) => null;
20 A10 topLevelFunction2(A11 a, {A13 b}) => null;
21
22 @Meta(A14)
23 class X {}
24
25 class Meta {
26 final f;
27 const Meta(this.f);
28 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/shaker/source_local.dart.shaker ('k') | pkg/front_end/testcases/shaker/source_top.dart.shaker » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698