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

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: Make it easier for dart2js. 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..6f090bd5c0d198d3a521da787a4615d9514dcd87 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 (zonePrint != null) {
+ zonePrint(line);
+ } else {
+ consolePrint(line);
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698