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

Unified Diff: lib/coreimpl/options.dart

Issue 11233032: [core] cleanup === and !== (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
Index: lib/coreimpl/options.dart
===================================================================
--- lib/coreimpl/options.dart (revision 13856)
+++ lib/coreimpl/options.dart (working copy)
@@ -4,7 +4,7 @@
class RuntimeOptions 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);
}

Powered by Google App Engine
This is Rietveld 408576698