| Index: runtime/bin/vmservice/vmservice.dart
|
| diff --git a/pkg/mime/lib/mime.dart b/runtime/bin/vmservice/vmservice.dart
|
| similarity index 55%
|
| copy from pkg/mime/lib/mime.dart
|
| copy to runtime/bin/vmservice/vmservice.dart
|
| index 44c6cadd9de34ee98d0cf01a1bf53f834dbe2a4d..e074e9a4d4b6663c78fa2652a7c9f2ca5fbd48c4 100644
|
| --- a/pkg/mime/lib/mime.dart
|
| +++ b/runtime/bin/vmservice/vmservice.dart
|
| @@ -2,12 +2,20 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library mime;
|
| +library vmservice;
|
|
|
| import 'dart:async';
|
| +import 'dart:json' as JSON;
|
| +import 'dart:io';
|
| +import 'dart:isolate';
|
| import 'dart:typed_data';
|
| +import 'dart:utf' as UTF;
|
|
|
| -part 'src/mime_type.dart';
|
| -part 'src/extension_map.dart';
|
| -part 'src/magic_number.dart';
|
| -part 'src/mime_multipart_transformer.dart';
|
| +
|
| +void messageHandler(message, SendPort replyTo) {
|
| +}
|
| +
|
| +
|
| +main() {
|
| + port.receive(messageHandler);
|
| +}
|
|
|