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

Unified Diff: runtime/lib/internal_patch.dart

Issue 1971193002: Patches to support Dart VM patch files in dart2js. (Closed) Base URL: sso://user/ahe/dart-sdk@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/integers_patch.dart ('k') | runtime/lib/isolate_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/internal_patch.dart
diff --git a/runtime/lib/internal_patch.dart b/runtime/lib/internal_patch.dart
index 30898306abcfbc1189e3e9947059088b42914667..d6651c48551d99be77b5a474cf6537ca7de733d6 100644
--- a/runtime/lib/internal_patch.dart
+++ b/runtime/lib/internal_patch.dart
@@ -8,34 +8,4 @@ patch List makeListFixedLength(List growableList)
patch List makeFixedListUnmodifiable(List fixedLengthList)
native "Internal_makeFixedListUnmodifiable";
-class VMLibraryHooks {
- // Example: "dart:isolate _Timer._factory"
- static var timerFactory;
-
- // Example: "dart:io _EventHandler._sendData"
- static var eventHandlerSendData;
-
- // A nullary closure that answers the current clock value in milliseconds.
- // Example: "dart:io _EventHandler._timerMillisecondClock"
- static var timerMillisecondClock;
-
- // Implementation of Resource.readAsBytes.
- static var resourceReadAsBytes;
-
- // Implementation of package root/map provision.
- static var packageRootString;
- static var packageConfigString;
- static var packageRootUriFuture;
- static var packageConfigUriFuture;
- static var resolvePackageUriFuture;
-
- static var platformScript;
-}
-
-patch class CodeUnits {
- static final int cid = ClassID.getID(new CodeUnits(""));
-}
-
-final bool is64Bit = _inquireIs64Bit();
-
bool _inquireIs64Bit() native "Internal_inquireIs64Bit";
« no previous file with comments | « runtime/lib/integers_patch.dart ('k') | runtime/lib/isolate_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698