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

Unified Diff: runtime/bin/file.dart

Issue 10872033: Change getters syntax in dart:io library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | runtime/bin/file_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file.dart
diff --git a/runtime/bin/file.dart b/runtime/bin/file.dart
index 5d399c3f3be272d68d754ac0a9d76ed6544b250a..4961bce07f8adc7f2516fb4a8e21faa8e7053d85 100644
--- a/runtime/bin/file.dart
+++ b/runtime/bin/file.dart
@@ -223,7 +223,7 @@ interface File default _File {
/**
* Get the name of the file.
*/
- String get name();
+ String get name;
}
@@ -370,7 +370,7 @@ interface RandomAccessFile {
/**
* Get the name of the file.
*/
- String get name();
+ String get name;
}
« no previous file with comments | « no previous file | runtime/bin/file_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698