OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016, 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 class Superclass { |
| 5 foo({alpha, beta}) {} |
| 6 bar({beta, alpha}) {} |
| 7 } |
| 8 |
| 9 class Subclass extends Superclass { |
| 10 foo({beta, alpha}) {} |
| 11 bar({alpha, beta}) {} |
| 12 } |
| 13 |
| 14 topLevelNamed(beta, alpha, {gamma, delta}) {} |
| 15 topLevelOptional(beta, alpha, [gamma, delta]) {} |
| 16 |
| 17 main() { |
| 18 new Subclass().foo(beta: 1, alpha: 2); |
| 19 new Subclass().foo(alpha: 1, beta: 2); |
| 20 topLevelNamed(1, 2, gamma: 3, delta: 4); |
| 21 topLevelNamed(1, 2, delta: 3, gamma: 4); |
| 22 } |
OLD | NEW |