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

Unified Diff: lib/coreimpl/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/coreimpl/linked_hash_map.dart ('k') | lib/coreimpl/queue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/options.dart
diff --git a/lib/coreimpl/options.dart b/lib/coreimpl/options.dart
index b1be269e50acc53c2cfe6cd548f8d1af08f0a355..87f70e277968257ed15113abdd9e8f7a10f396a0 100644
--- a/lib/coreimpl/options.dart
+++ b/lib/coreimpl/options.dart
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
class RuntimeOptions implements Options {
- List<String> get arguments() {
+ List<String> get arguments {
if (_arguments === null) {
// On first access make a copy of the native arguments.
_arguments = _nativeArguments.getRange(0, _nativeArguments.length);
@@ -11,11 +11,11 @@ class RuntimeOptions implements Options {
return _arguments;
}
- String get executable() {
+ String get executable {
return _nativeExecutable;
}
- String get script() {
+ String get script {
return _nativeScript;
}
« no previous file with comments | « lib/coreimpl/linked_hash_map.dart ('k') | lib/coreimpl/queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698