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

Unified Diff: sdk/lib/_internal/lib/core_patch.dart

Issue 27112002: Make print interceptable. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. Created 7 years, 2 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
Index: sdk/lib/_internal/lib/core_patch.dart
diff --git a/sdk/lib/_internal/lib/core_patch.dart b/sdk/lib/_internal/lib/core_patch.dart
index e14786a8842c8efba8b4bcc889156d8eadb1cbd7..cb844e0410fa7469d2a2f24e8b1a0ccdbcfc8840 100644
--- a/sdk/lib/_internal/lib/core_patch.dart
+++ b/sdk/lib/_internal/lib/core_patch.dart
@@ -24,10 +24,6 @@ _symbolMapToStringMap(Map<Symbol, dynamic> map) {
return result;
}
-patch void print(Object object) {
- Primitives.printString(object.toString());
-}
-
patch int identityHashCode(Object object) => objectHashCode(object);
// Patch for Object implementation.

Powered by Google App Engine
This is Rietveld 408576698