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

Unified Diff: sdk/lib/_internal/js_runtime/lib/developer_patch.dart

Issue 2542003002: Add getIsolateID to Service class in dart:developer (Closed)
Patch Set: Created 4 years 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
Index: sdk/lib/_internal/js_runtime/lib/developer_patch.dart
diff --git a/sdk/lib/_internal/js_runtime/lib/developer_patch.dart b/sdk/lib/_internal/js_runtime/lib/developer_patch.dart
index b9e35b2773fe899833de572514aa959581c72255..ae87b6e7372ec80a99b8ccde3659769516db556f 100644
--- a/sdk/lib/_internal/js_runtime/lib/developer_patch.dart
+++ b/sdk/lib/_internal/js_runtime/lib/developer_patch.dart
@@ -125,3 +125,8 @@ void _getServerInfo(SendPort sp) {
void _webServerControl(SendPort sp, bool enable) {
sp.send(null);
}
+
+@patch
+String _getIsolateIdFromSendPort(SendPort sp) {
+ return null;
+}

Powered by Google App Engine
This is Rietveld 408576698