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

Unified Diff: sdk/lib/core/print.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/core/print.dart
diff --git a/sdk/lib/core/print.dart b/sdk/lib/core/print.dart
index 17ef81707af8bf2a0ba8e923ccda447acbb4e0ff..4379ceb47d7dace623252f3740141b9b2077599d 100644
--- a/sdk/lib/core/print.dart
+++ b/sdk/lib/core/print.dart
@@ -4,4 +4,11 @@
part of dart.core;
-external void print(Object object);
+void print(Object object) {
+ String line = object.toString();
+ if (printToZone == null) {
+ printToConsole(line);
+ } else {
+ printToZone(line);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698