OLD | NEW |
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'; |
OLD | NEW |