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

Unified Diff: tools/create_sdk.py

Issue 9704081: SDK: correct the type of the argument to 'print' to 'Object' for runtime version of core. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index 19e63ff13253fc891fef0a6acc5c9ca11a07a8b5..310337432f1b6575e043add16a8b8ff361bbe147 100644
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -350,7 +350,7 @@ def Main(argv):
if filename.endswith('.dart'):
dest_file.write('#source("runtime/' + filename + '");\n')
# include the missing print function
- dest_file.write('void print(String arg) { /* native */ }\n')
+ dest_file.write('void print(Object arg) { /* native */ }\n')
dest_file.close()
#
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698