Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit a9e67d8

Browse files
scheglovcommit-bot@chromium.org
authored andcommitted
Prepare to publish analyzer_plugin 0.3.0
We need this for https://dart-review.googlesource.com/c/sdk/+/154128 Change-Id: I7ce15ad1a0037e60422f412a0cb9840c29a7e4e0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/154129 Reviewed-by: Brian Wilkerson <[email protected]> Commit-Queue: Konstantin Shcheglov <[email protected]>
1 parent 93fa1cf commit a9e67d8

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

pkg/analyzer_plugin/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.3.0
2+
- Removed deprecated `Plugin.getResolveResult`. Use `getResolvedUnitResult`.
3+
14
## 0.2.5
25
- Change supported analyzer version to `^0.39.12`
36

pkg/analyzer_plugin/lib/plugin/plugin.dart

-8
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,6 @@ abstract class ServerPlugin {
173173
return result;
174174
}
175175

176-
/// Return the result of analyzing the file with the given [path].
177-
///
178-
/// Throw a [RequestFailure] is the file cannot be analyzed or if the driver
179-
/// associated with the file is not an [AnalysisDriver].
180-
@deprecated
181-
Future<ResolveResult> getResolveResult(String path) =>
182-
getResolvedUnitResult(path);
183-
184176
/// Handle an 'analysis.getNavigation' request.
185177
///
186178
/// Throw a [RequestFailure] if the request could not be handled.

pkg/analyzer_plugin/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: analyzer_plugin
22
description: A framework and support code for building plugins for the analysis server.
3-
version: 0.2.5
3+
version: 0.3.0
44
author: Dart Team <[email protected]>
55
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer_plugin
66

0 commit comments

Comments
 (0)