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

Side by Side Diff: pkg/analysis_server/lib/plugin/analysis/analyzed_files.dart

Issue 3001413002: Remove uses of the old plugin model from the analysis server (Closed)
Patch Set: Created 3 years, 4 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
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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.
4
5 /**
6 * Support for client code that extends the set of files being analyzed by the
7 * analysis server.
8 *
9 * Plugins can contribute a list of file patterns. Any file whose path matches
10 * one or more of the contributed patterns will be analyzed. The file patterns
11 * are interpreted as glob patterns as defined by the 'glob' package.
12 *
13 * If a plugin is interested in analyzing a certain kind of file, it needs to
14 * ensure that files of that kind will be analyzed. It should register a list of
15 * file patterns by including code like the following in the plugin's
16 * registerExtensions method:
17 *
18 * @override
19 * void registerExtensions(RegisterExtension registerExtension) {
20 * ...
21 * registerExtension(
22 * ANALYZED_FILE_PATTERNS_EXTENSION_POINT_ID,
23 * ['*.yaml']);
24 * ...
25 * }
26 */
27 import 'package:analysis_server/src/plugin/server_plugin.dart';
28 import 'package:plugin/plugin.dart';
29
30 /**
31 * The identifier of the extension point that allows plugins to cause certain
32 * kinds of files to be analyzed. The object used as an extension must be a list
33 * of strings. The strings are interpreted as glob patterns as defined by the
34 * 'glob' package.
35 */
36 final String ANALYZED_FILE_PATTERNS_EXTENSION_POINT_ID = Plugin.join(
37 ServerPlugin.UNIQUE_IDENTIFIER,
38 ServerPlugin.ANALYZED_FILE_PATTERNS_EXTENSION_POINT);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698