| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 mime; | 5 library vmservice; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:json' as JSON; |
| 9 import 'dart:io'; |
| 10 import 'dart:isolate'; |
| 8 import 'dart:typed_data'; | 11 import 'dart:typed_data'; |
| 12 import 'dart:utf' as UTF; |
| 9 | 13 |
| 10 part 'src/mime_type.dart'; | 14 |
| 11 part 'src/extension_map.dart'; | 15 void messageHandler(message, SendPort replyTo) { |
| 12 part 'src/magic_number.dart'; | 16 } |
| 13 part 'src/mime_multipart_transformer.dart'; | 17 |
| 18 |
| 19 main() { |
| 20 port.receive(messageHandler); |
| 21 } |
| OLD | NEW |