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

Side by Side Diff: editor/util/debuggertest/pets.dart

Issue 11867024: Move some core classes to collection library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with bug number. Created 7 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
OLDNEW
1 1
2 library pets; 2 library pets;
3 3
4 import 'dart:collection' show DoubleLinkedQueue;
4 import 'dart:isolate'; 5 import 'dart:isolate';
5 import 'dart:math'; 6 import 'dart:math';
6 7
7 final num MAX_CATS = 10; 8 final num MAX_CATS = 10;
8 9
9 final SPARKY = const Cat("Sparky"); 10 final SPARKY = const Cat("Sparky");
10 11
11 final CHIPPY = const _Chipmunk("Chi\np\npy"); 12 final CHIPPY = const _Chipmunk("Chi\np\npy");
12 13
13 abstract class Animal { 14 abstract class Animal {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 for (int i = 0; i < arr.length; i++) { 216 for (int i = 0; i < arr.length; i++) {
216 arr[i] = i * 10; 217 arr[i] = i * 10;
217 } 218 }
218 219
219 print("big array created"); 220 print("big array created");
220 221
221 arr[0] = "assdsdf"; 222 arr[0] = "assdsdf";
222 223
223 arr[0]++; 224 arr[0]++;
224 } 225 }
OLDNEW
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.core_test/test_data/Money/money.dart ('k') | pkg/oauth2/test/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698