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

Side by Side Diff: frog/tests/leg/src/PrettyParameterTest.dart

Issue 9193016: Add the arity to calls, and support noSuchMethodException. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 11 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
« no previous file with comments | « frog/tests/leg/src/LiteralListTest.dart ('k') | frog/tests/leg/src/SsaPhiEliminatorTest.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Test that parameters keep their names in the output. 4 // Test that parameters keep their names in the output.
5 5
6 #import("compiler_helper.dart"); 6 #import("compiler_helper.dart");
7 7
8 final String FOO = @""" 8 final String FOO = @"""
9 void foo(var a, var b) { 9 void foo(var a, var b) {
10 } 10 }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 if (test) { 63 if (test) {
64 result = 42; 64 result = 42;
65 } 65 }
66 return result; 66 return result;
67 } 67 }
68 """; 68 """;
69 69
70 main() { 70 main() {
71 String generated = compile(FOO, 'foo'); 71 String generated = compile(FOO, 'foo');
72 // TODO(ngeoffray): Use 'contains' when frog supports it. 72 // TODO(ngeoffray): Use 'contains' when frog supports it.
73 RegExp regexp = const RegExp("function\\(a, b\\) {"); 73 RegExp regexp = const RegExp(@"function\(a, b\) {");
74 Expect.isTrue(regexp.hasMatch(generated)); 74 Expect.isTrue(regexp.hasMatch(generated));
75 75
76 generated = compile(BAR, 'bar'); 76 generated = compile(BAR, 'bar');
77 regexp = const RegExp("function\\(\\\$eval, _\\\$eval\\) {"); 77 regexp = const RegExp(@"function\(\$eval, _\$eval\) {");
78 Expect.isTrue(regexp.hasMatch(generated)); 78 Expect.isTrue(regexp.hasMatch(generated));
79 79
80 generated = compile(PARAMETER_AND_TEMP, 'bar'); 80 generated = compile(PARAMETER_AND_TEMP, 'bar');
81 regexp = const RegExp("print\\(t0\\)"); 81 regexp = const RegExp(@"print\$1\(t0\)");
82 Expect.isTrue(regexp.hasMatch(generated)); 82 Expect.isTrue(regexp.hasMatch(generated));
83 // Check that the second 't0' got another name. 83 // Check that the second 't0' got another name.
84 regexp = const RegExp("print\\(t0_0\\)"); 84 regexp = const RegExp(@"print\$1\(t0_0\)");
85 Expect.isTrue(regexp.hasMatch(generated)); 85 Expect.isTrue(regexp.hasMatch(generated));
86 86
87 generated = compile(NO_LOCAL, 'foo'); 87 generated = compile(NO_LOCAL, 'foo');
88 regexp = const RegExp("return baz"); 88 regexp = const RegExp("return baz");
89 Expect.isTrue(regexp.hasMatch(generated)); 89 Expect.isTrue(regexp.hasMatch(generated));
90 regexp = const RegExp("baz = 2"); 90 regexp = const RegExp("baz = 2");
91 Expect.isTrue(regexp.hasMatch(generated)); 91 Expect.isTrue(regexp.hasMatch(generated));
92 regexp = const RegExp("baz = 3"); 92 regexp = const RegExp("baz = 3");
93 Expect.isTrue(regexp.hasMatch(generated)); 93 Expect.isTrue(regexp.hasMatch(generated));
94 regexp = const RegExp("bar === true"); 94 regexp = const RegExp("bar === true");
95 Expect.isTrue(regexp.hasMatch(generated)); 95 Expect.isTrue(regexp.hasMatch(generated));
96 96
97 generated = compile(MULTIPLE_PHIS_ONE_LOCAL, 'foo'); 97 generated = compile(MULTIPLE_PHIS_ONE_LOCAL, 'foo');
98 regexp = const RegExp("var a = 2;"); 98 regexp = const RegExp("var a = 2;");
99 Expect.isTrue(regexp.hasMatch(generated)); 99 Expect.isTrue(regexp.hasMatch(generated));
100 100
101 regexp = const RegExp("a = 2;"); 101 regexp = const RegExp("a = 2;");
102 Iterator matches = regexp.allMatches(generated).iterator(); 102 Iterator matches = regexp.allMatches(generated).iterator();
103 Expect.isTrue(matches.hasNext()); 103 Expect.isTrue(matches.hasNext());
104 matches.next(); 104 matches.next();
105 Expect.isFalse(matches.hasNext()); 105 Expect.isFalse(matches.hasNext());
106 106
107 generated = compile(PARAMETER_INIT, 'foo'); 107 generated = compile(PARAMETER_INIT, 'foo');
108 regexp = const RegExp("var result = start;"); 108 regexp = const RegExp("var result = start;");
109 Expect.isTrue(regexp.hasMatch(generated)); 109 Expect.isTrue(regexp.hasMatch(generated));
110 } 110 }
OLDNEW
« no previous file with comments | « frog/tests/leg/src/LiteralListTest.dart ('k') | frog/tests/leg/src/SsaPhiEliminatorTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698