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; |
} |