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

Unified Diff: lib/core/options.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « lib/core/map.dart ('k') | lib/core/string.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/core/options.dart
diff --git a/lib/core/options.dart b/lib/core/options.dart
index 678de2fbd7565ecf5ba69b309f583e81b91f1b2c..1be8c12f148c8da2bf7f6f9bc9e7efd66d159413 100644
--- a/lib/core/options.dart
+++ b/lib/core/options.dart
@@ -23,7 +23,7 @@ interface Options default RuntimeOptions {
* If the execution environment does not support [arguments] an empty list
* is returned.
*/
- List<String> get arguments();
+ List<String> get arguments;
/**
* Returns the path of the executable used to run the script in this
@@ -32,7 +32,7 @@ interface Options default RuntimeOptions {
* If the execution environment does not support [executable] an empty
* string is returned.
*/
- String get executable();
+ String get executable;
/**
* Returns the path of the script being run in this isolate.
@@ -40,5 +40,5 @@ interface Options default RuntimeOptions {
* If the executable environment does not support [script] an empty
* string is returned.
*/
- String get script();
+ String get script;
}
« no previous file with comments | « lib/core/map.dart ('k') | lib/core/string.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698