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

Side by Side Diff: pkg/analyzer/lib/src/search/search_engine.dart

Issue 365193004: Move Index and IndexStore implementations into Engine. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // This code was auto-generated, is not intended to be edited, and is subject to 5 // This code was auto-generated, is not intended to be edited, and is subject to
6 // significant change. Please see the README file for more information. 6 // significant change. Please see the README file for more information.
7 7
8 library engine.src.search_engine; 8 library engine.src.search_engine;
9 9
10
11
12 ///** 10 ///**
13 // * Instances of the class <code>AndSearchPattern</code> implement a search pat tern that matches 11 // * Instances of the class <code>AndSearchPattern</code> implement a search pat tern that matches
14 // * elements that match all of several other search patterns. 12 // * elements that match all of several other search patterns.
15 // */ 13 // */
16 //class AndSearchPattern implements SearchPattern { 14 //class AndSearchPattern implements SearchPattern {
17 // /** 15 // /**
18 // * The patterns used to determine whether this pattern matches an element. 16 // * The patterns used to determine whether this pattern matches an element.
19 // */ 17 // */
20 // final List<SearchPattern> _patterns; 18 // final List<SearchPattern> _patterns;
21 // 19 //
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 // 1219 //
1222 // /** 1220 // /**
1223 // * Pass the given match on to the wrapped listener. 1221 // * Pass the given match on to the wrapped listener.
1224 // * 1222 // *
1225 // * @param match the match to be propagated 1223 // * @param match the match to be propagated
1226 // */ 1224 // */
1227 // void propagateMatch(SearchMatch match) { 1225 // void propagateMatch(SearchMatch match) {
1228 // _baseListener.matchFound(match); 1226 // _baseListener.matchFound(match);
1229 // } 1227 // }
1230 //} 1228 //}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698