98356d3ed8
This reverts commit a437b4b469.
Reason for revert: Build on Windows appears broken.
Original change's description:
> Re-land "[vm/kernel/precomp] Remove procedures from entry points files."
>
> The original revision is in Patchset 1.
>
> Due to idiosyncrasies of the legacy VM parser, we need to put the @pragma definition
> on both the original and patched definition. Hopefully we can remove these extra definitions
> once Dart 1 AOT is fully obsolete.
>
> Cq-Include-Trybots: luci.dart.try: vm-kernel-optcounter-threshold-linux-release-x64-try,vm-kernel-precomp-linux-debug-x64-try,vm-kernel-precomp-linux-release-simarm-try,vm-kernel-precomp-linux-release-simarm64-try,vm-kernel-precomp-linux-release-x64-try,vm-kernel-precomp-win-release-x64-try
> Change-Id: I2515dee2bbf14cece5e75450b1951d45f1250959
> Reviewed-on: https://dart-review.googlesource.com/65545
> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
> Reviewed-by: Alexander Markov <alexmarkov@google.com>
> Commit-Queue: Samir Jindel <sjindel@google.com>
TBR=lrn@google.com,alexmarkov@google.com,sjindel@google.com
Change-Id: I783dcd6f00d1f31907d90651ffbf80a6af1fb98d
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Cq-Include-Trybots: luci.dart.try: vm-kernel-optcounter-threshold-linux-release-x64-try, vm-kernel-precomp-linux-debug-x64-try, vm-kernel-precomp-linux-release-simarm-try, vm-kernel-precomp-linux-release-simarm64-try, vm-kernel-precomp-linux-release-x64-try, vm-kernel-precomp-win-release-x64-try
Reviewed-on: https://dart-review.googlesource.com/65960
Reviewed-by: Samir Jindel <sjindel@google.com>
Commit-Queue: Samir Jindel <sjindel@google.com>
62 lines
1.8 KiB
Dart
62 lines
1.8 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// 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.
|
|
|
|
/// Note: the VM concatenates all patch files into a single patch file. This
|
|
/// file is the first patch in "dart:io" which contains all the imports used by
|
|
/// patches of that library. We plan to change this when we have a shared front
|
|
/// end and simply use parts.
|
|
|
|
import "dart:_internal" show VMLibraryHooks, patch;
|
|
|
|
import "dart:async"
|
|
show
|
|
Completer,
|
|
Future,
|
|
Stream,
|
|
StreamConsumer,
|
|
StreamController,
|
|
StreamSubscription,
|
|
Timer,
|
|
Zone,
|
|
scheduleMicrotask;
|
|
|
|
import "dart:collection" show HashMap;
|
|
|
|
import "dart:convert" show Encoding, utf8;
|
|
|
|
import "dart:developer" show registerExtension;
|
|
|
|
import "dart:isolate" show RawReceivePort, ReceivePort, SendPort;
|
|
|
|
import "dart:math" show min;
|
|
|
|
import "dart:nativewrappers" show NativeFieldWrapperClass1;
|
|
|
|
import "dart:typed_data" show Uint8List;
|
|
|
|
/// These are the additional parts of this patch library:
|
|
// part "directory_patch.dart";
|
|
// part "eventhandler_patch.dart";
|
|
// part "file_patch.dart";
|
|
// part "file_system_entity_patch.dart";
|
|
// part "filter_patch.dart";
|
|
// part "io_service_patch.dart";
|
|
// part "platform_patch.dart";
|
|
// part "process_patch.dart";
|
|
// part "socket_patch.dart";
|
|
// part "stdio_patch.dart";
|
|
// part "secure_socket_patch.dart";
|
|
// part "sync_socket_patch.dart";
|
|
|
|
@patch
|
|
class _IOCrypto {
|
|
@patch
|
|
static Uint8List getRandomBytes(int count) native "Crypto_GetRandomBytes";
|
|
}
|
|
|
|
_setupHooks() {
|
|
VMLibraryHooks.eventHandlerSendData = _EventHandler._sendData;
|
|
VMLibraryHooks.timerMillisecondClock = _EventHandler._timerMillisecondClock;
|
|
}
|