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

Unified Diff: sdk/lib/core/options.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month 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 | « sdk/lib/core/map.dart ('k') | sdk/lib/core/queue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « sdk/lib/core/map.dart ('k') | sdk/lib/core/queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698