Index: runtime/lib/internal_patch.dart |
=================================================================== |
--- runtime/lib/internal_patch.dart (revision 43127) |
+++ runtime/lib/internal_patch.dart (working copy) |
@@ -5,6 +5,9 @@ |
patch List makeListFixedLength(List growableList) |
native "Internal_makeListFixedLength"; |
-// TODO(iposva): Move bulk of timer implementation into async. |
-// Used by the message handler to run timers |
-var runTimerClosure = null; |
+class VMLibraryHooks { |
+ // Example: "dart:isolate _Timer._factory" |
+ static var timerFactory; |
+ // Example: "dart:io _EventHandler._sendData" |
+ static var eventHandlerSendData; |
+} |