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

Unified Diff: pkg/analysis_server/lib/src/services/index/index.dart

Issue 736603005: Rollback r41807. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « no previous file | pkg/analysis_server/lib/src/services/index/store/codec.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/services/index/index.dart
diff --git a/pkg/analysis_server/lib/src/services/index/index.dart b/pkg/analysis_server/lib/src/services/index/index.dart
index 7c3effbaf7d1197dc85fa5e1d578dd8fc077dc35..acfc8351e439cea12722351873c8c6dced98a428 100644
--- a/pkg/analysis_server/lib/src/services/index/index.dart
+++ b/pkg/analysis_server/lib/src/services/index/index.dart
@@ -315,17 +315,12 @@ class LocationWithData<D> extends Location {
* a concrete kind of this name - field, method or something else.
*/
class NameElement extends ElementImpl {
- NameElement(String name) : super('name:$name', -1);
+ NameElement(String name) : super("name:${name}", -1);
@override
ElementKind get kind => ElementKind.NAME;
@override
- bool operator ==(Object other) {
- return other is NameElement && other.name == name;
- }
-
- @override
accept(ElementVisitor visitor) => null;
}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/index/store/codec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698