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

Unified Diff: samples/markdown/markdown.dart

Issue 11263040: Make String.charCodes a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with co19 issue number. Created 8 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
« no previous file with comments | « samples/logo/logo.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/markdown/markdown.dart
diff --git a/samples/markdown/markdown.dart b/samples/markdown/markdown.dart
index 9bc1e53614b65882533889fc5a661dfa30f8e85f..c39da493f9fc8fb074d488e5484a43d90374ce2e 100644
--- a/samples/markdown/markdown.dart
+++ b/samples/markdown/markdown.dart
@@ -42,6 +42,6 @@ String readFile(String path) {
void writeFile(String path, String text) {
final file = new File(path);
final stream = file.openOutputStream();
- stream.write(text.charCodes());
+ stream.write(text.charCodes);
stream.close();
}
« no previous file with comments | « samples/logo/logo.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698