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

Side by Side Diff: samples/swarm/swarmlib.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Merge to head. Created 7 years, 8 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 | « samples/swarm/DataSource.dart ('k') | sdk/lib/_collection_dev/iterable.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library swarmlib; 5 library swarmlib;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:json' as json; 8 import 'dart:json' as json;
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:math' as Math; 10 import 'dart:math' as Math;
11 import 'dart:collection';
11 import 'swarm_ui_lib/base/base.dart'; 12 import 'swarm_ui_lib/base/base.dart';
12 import 'swarm_ui_lib/view/view.dart'; 13 import 'swarm_ui_lib/view/view.dart';
13 import 'swarm_ui_lib/observable/observable.dart'; 14 import 'swarm_ui_lib/observable/observable.dart';
14 import 'swarm_ui_lib/touch/touch.dart'; 15 import 'swarm_ui_lib/touch/touch.dart';
15 import 'swarm_ui_lib/util/utilslib.dart'; 16 import 'swarm_ui_lib/util/utilslib.dart';
16 17
17 part 'App.dart'; 18 part 'App.dart';
18 part 'BiIterator.dart'; 19 part 'BiIterator.dart';
19 part 'ConfigHintDialog.dart'; 20 part 'ConfigHintDialog.dart';
20 part 'HelpDialog.dart'; 21 part 'HelpDialog.dart';
21 part 'SwarmState.dart'; 22 part 'SwarmState.dart';
22 part 'SwarmViews.dart'; 23 part 'SwarmViews.dart';
23 part 'SwarmApp.dart'; 24 part 'SwarmApp.dart';
24 part 'DataSource.dart'; 25 part 'DataSource.dart';
25 part 'Decoder.dart'; 26 part 'Decoder.dart';
26 part 'UIState.dart'; 27 part 'UIState.dart';
27 part 'Views.dart'; 28 part 'Views.dart';
28 part 'CSS.dart'; 29 part 'CSS.dart';
29 30
30 // TODO(jimhug): Remove this when deploying. 31 // TODO(jimhug): Remove this when deploying.
31 part 'CannedData.dart'; 32 part 'CannedData.dart';
OLDNEW
« no previous file with comments | « samples/swarm/DataSource.dart ('k') | sdk/lib/_collection_dev/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698