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

Side by Side Diff: pkg/analyzer/lib/plugin/linter.dart

Issue 1134823002: Context fix for linting. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 7 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
(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 /// Support for client code that extends the analysis engine by adding new
6 /// lint rules.
7 library analyzer.plugin.linter;
8
9 import 'package:analyzer/src/plugin/linter_plugin.dart';
10 import 'package:linter/src/linter.dart';
11 import 'package:plugin/plugin.dart';
12
13 /// The identifier of the extension point that allows plugins to register new
14 /// analysis tasks with the analysis engine. The object used as an extension mus t
kevmoo 2015/05/08 22:30:00 long line
pquitslund 2015/05/08 22:39:19 Fixed.
15 /// implement [LintRule].
16 final String LINT_RULE_EXTENSION_POINT_ID = Plugin.join(
17 LinterPlugin.UNIQUE_IDENTIFIER, LinterPlugin.LINT_RULE_EXTENSION_POINT);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698