| OLD | NEW |
| (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 } |
| OLD | NEW |