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

Unified Diff: sdk/lib/mirrors/mirrors.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/io/websocket_impl.dart ('k') | tests/compiler/dart2js/begin_end_token_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/mirrors/mirrors.dart
diff --git a/sdk/lib/mirrors/mirrors.dart b/sdk/lib/mirrors/mirrors.dart
index 9a0fe0f4c331c585614126d6a7d028be136d9841..303cec4ad7ea0c92f3c5a4d93af9399d99610128 100644
--- a/sdk/lib/mirrors/mirrors.dart
+++ b/sdk/lib/mirrors/mirrors.dart
@@ -154,7 +154,7 @@ abstract class DeclarationMirror implements Mirror {
* Is this declaration top-level?
*
* This is defined to be equivalent to:
- * [:mirror.owner !== null && mirror.owner is LibraryMirror:]
+ * [:mirror.owner != null && mirror.owner is LibraryMirror:]
*/
bool get isTopLevel;
« no previous file with comments | « sdk/lib/io/websocket_impl.dart ('k') | tests/compiler/dart2js/begin_end_token_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698