| Index: sdk/lib/core/options.dart
|
| diff --git a/sdk/lib/core/options.dart b/sdk/lib/core/options.dart
|
| index 3377c30d2eaf56ca0d53cbd6e31c188615ddadc8..3a4d70300081eb3cfb0e0abee95818da6588796b 100644
|
| --- a/sdk/lib/core/options.dart
|
| +++ b/sdk/lib/core/options.dart
|
| @@ -45,7 +45,7 @@ abstract class Options {
|
|
|
| class _OptionsImpl implements Options {
|
| List<String> get arguments {
|
| - if (_arguments === null) {
|
| + if (_arguments == null) {
|
| // On first access make a copy of the native arguments.
|
| _arguments = _nativeArguments.getRange(0, _nativeArguments.length);
|
| }
|
|
|