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

Side by Side Diff: pkg/front_end/testcases/named_parameters.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
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 class Superclass { 4 class Superclass {
5 foo({alpha, beta}) {} 5 foo({alpha, beta}) {}
6 bar({beta, alpha}) {} 6 bar({beta, alpha}) {}
7 7
8 namedCallback(callback({String alpha, int beta})) { 8 namedCallback(callback({String alpha, int beta})) {
9 callback(alpha: 'one', beta: 2); 9 callback(alpha: 'one', beta: 2);
10 callback(beta: 1, alpha: 'two'); 10 callback(beta: 1, alpha: 'two');
11 } 11 }
12 } 12 }
13 13
14 class Subclass extends Superclass { 14 class Subclass extends Superclass {
15 foo({beta, alpha}) {} 15 foo({beta, alpha}) {}
16 bar({alpha, beta}) {} 16 bar({alpha, beta}) {}
17 17
18 namedCallback(callback({int beta, String alpha})) {} 18 namedCallback(callback({int beta, String alpha})) {}
19 } 19 }
20 20
21 topLevelNamed(beta, alpha, {gamma, delta}) {} 21 topLevelNamed(beta, alpha, {gamma, delta}) {}
22 topLevelOptional(beta, alpha, [gamma, delta]) {} 22 topLevelOptional(beta, alpha, [gamma, delta]) {}
23 23
24 main() { 24 main() {
25 new Subclass().foo(beta: 1, alpha: 2); 25 new Subclass().foo(beta: 1, alpha: 2);
26 new Subclass().foo(alpha: 1, beta: 2); 26 new Subclass().foo(alpha: 1, beta: 2);
27 topLevelNamed(1, 2, gamma: 3, delta: 4); 27 topLevelNamed(1, 2, gamma: 3, delta: 4);
28 topLevelNamed(1, 2, delta: 3, gamma: 4); 28 topLevelNamed(1, 2, delta: 3, gamma: 4);
29 } 29 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/mixin.dart.outline.expect ('k') | pkg/front_end/testcases/named_parameters.dart.direct.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698