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

Side by Side Diff: tests/language/regress_10996_test.dart

Issue 15959017: Fix issue with dart2dart translation of parameters (collision risk). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013, 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
5 import "package:expect/expect.dart";
6 import "regress_10996_lib.dart" as lib;
7
8 foo(a, [b]) {
9 return a + b + lib.a + lib.b;
10 }
11
12 bar(c, {d}) {
13 return c + d + lib.c + lib.d;
14 }
15
16 main() {
17 Expect.equals(1 + 2 + 3 + 4, foo(1, 2));
18 Expect.equals(7 + 8 + 3 + 4, foo(7, 8));
19 Expect.equals(3 + 4 + 5 + 6, bar(3, d: 4));
20 Expect.equals(7 + 8 + 5 + 6, bar(7, d: 8));
21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698