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

Side by Side Diff: tests/compiler/dart2js/builtin_interceptor_test.dart

Issue 11194025: Second round of cleanups for new optional parameter semantics. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 4
5 #import("compiler_helper.dart"); 5 #import("compiler_helper.dart");
6 6
7 const String TEST_ONE = r""" 7 const String TEST_ONE = r"""
8 foo(String a) { 8 foo(String a) {
9 // index into the parameter and move into a loop to make sure we'll get a 9 // index into the parameter and move into a loop to make sure we'll get a
10 // type guard. 10 // type guard.
(...skipping 16 matching lines...) Expand all
27 } 27 }
28 """; 28 """;
29 29
30 const String TEST_FOUR = r""" 30 const String TEST_FOUR = r"""
31 foo() { 31 foo() {
32 return new List().add(2); 32 return new List().add(2);
33 } 33 }
34 """; 34 """;
35 35
36 main() { 36 main() {
37 String generated = compile(TEST_ONE, 'foo'); 37 String generated = compile(TEST_ONE, entry: 'foo');
38 Expect.isTrue(generated.contains("return a.length;")); 38 Expect.isTrue(generated.contains("return a.length;"));
39 39
40 generated = compile(TEST_TWO, 'foo'); 40 generated = compile(TEST_TWO, entry: 'foo');
41 Expect.isTrue(generated.contains("return 3;")); 41 Expect.isTrue(generated.contains("return 3;"));
42 42
43 generated = compile(TEST_THREE, 'foo'); 43 generated = compile(TEST_THREE, entry: 'foo');
44 Expect.isTrue(generated.contains("return 3;")); 44 Expect.isTrue(generated.contains("return 3;"));
45 45
46 generated = compile(TEST_FOUR, 'foo'); 46 generated = compile(TEST_FOUR, entry: 'foo');
47 Expect.isTrue(generated.contains("push(2);")); 47 Expect.isTrue(generated.contains("push(2);"));
48 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698