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

Unified Diff: frog/lib/corelib.dart

Issue 9121025: cleanup to Value - fix for StringEscapesTest (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
« no previous file with comments | « frog/gen.dart ('k') | frog/library.dart » ('j') | frog/member.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/lib/corelib.dart
diff --git a/frog/lib/corelib.dart b/frog/lib/corelib.dart
index e1e9a863935bc36036422f266e49e31bbd53e07e..b2f633eeac975d0c31ba0dad7026dbc473c6f00a 100644
--- a/frog/lib/corelib.dart
+++ b/frog/lib/corelib.dart
@@ -56,7 +56,7 @@ class Clock {
// TODO(jmesserly): this is working around a name conflict with "window.print".
void print(Object obj) => _print(obj);
-void _print(Object obj) native '''if (typeof console == 'object') {
+void _print(Object obj) native @'''if (typeof console == 'object') {
if (obj) obj = obj.toString();
console.log(obj);
} else {
« no previous file with comments | « frog/gen.dart ('k') | frog/library.dart » ('j') | frog/member.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698