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

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

Issue 798483002: Revert "Probe safari codegen bug" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 | « no previous file | no next file » | 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 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 // Tests that we can call functions through getters. 7 // Tests that we can call functions through getters.
8 8
9 const TOP_LEVEL_CONST = 1; 9 const TOP_LEVEL_CONST = 1;
10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; 10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST;
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 A() { } 139 A() { }
140 var field; 140 var field;
141 get getter { return field; } 141 get getter { return field; }
142 method() { return field; } 142 method() { return field; }
143 143
144 } 144 }
145 145
146 146
147 class B { 147 class B {
148 148
149 B() { _order = new StringBuffer(""); } 149 B() : _order = new StringBuffer("") { }
150 150
151 get g0 { _mark('g'); return () { return _mark('f'); }; } 151 get g0 { _mark('g'); return () { return _mark('f'); }; }
152 get g1 { _mark('g'); return (x) { return _mark('f'); }; } 152 get g1 { _mark('g'); return (x) { return _mark('f'); }; }
153 get g2 { _mark('g'); return (x, y) { return _mark('f'); }; } 153 get g2 { _mark('g'); return (x, y) { return _mark('f'); }; }
154 get g3 { _mark('g'); return (x, y, z) { return _mark('f'); }; } 154 get g3 { _mark('g'); return (x, y, z) { return _mark('f'); }; }
155 155
156 get x { _mark('x'); return 0; } 156 get x { _mark('x'); return 0; }
157 get y { _mark('y'); return 1; } 157 get y { _mark('y'); return 1; }
158 get z { _mark('z'); return 2; } 158 get z { _mark('z'); return 2; }
159 159
160 _mark(m) { _order.write(m); return _order.toString(); } 160 _mark(m) { _order.write(m); return _order.toString(); }
161 StringBuffer _order; 161 StringBuffer _order;
162 162
163 } 163 }
164 164
165 main() { 165 main() {
166 CallThroughGetterTest.testMain(); 166 CallThroughGetterTest.testMain();
167 } 167 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698