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

Side by Side Diff: pkg/kernel/testcases/input/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
« no previous file with comments | « pkg/kernel/testcases/input/micro.dart ('k') | pkg/kernel/testcases/input/null_aware.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 namedCallback(callback({String alpha, int beta})) {
9 callback(alpha: 'one', beta: 2);
10 callback(beta: 1, alpha: 'two');
11 }
12 }
13
14 class Subclass extends Superclass {
15 foo({beta, alpha}) {}
16 bar({alpha, beta}) {}
17
18 namedCallback(callback({int beta, String alpha})) {}
19 }
20
21 topLevelNamed(beta, alpha, {gamma, delta}) {}
22 topLevelOptional(beta, alpha, [gamma, delta]) {}
23
24 main() {
25 new Subclass().foo(beta: 1, alpha: 2);
26 new Subclass().foo(alpha: 1, beta: 2);
27 topLevelNamed(1, 2, gamma: 3, delta: 4);
28 topLevelNamed(1, 2, delta: 3, gamma: 4);
29 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/input/micro.dart ('k') | pkg/kernel/testcases/input/null_aware.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698