Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,22 +143,6 @@
*/
public void analysis_getNavigation(String file, int offset, int length, GetNavigationConsumer consumer);

/**
* {@code analysis.getReachableSources}
*
* Return the transitive closure of reachable sources for a given file.
*
* If a request is made for a file which does not exist, or which is not currently subject to
* analysis (e.g. because it is not associated with any analysis root specified to
* analysis.setAnalysisRoots), an error of type GET_REACHABLE_SOURCES_INVALID_FILE will be
* generated.
*
* @param file The file for which reachable source information is being requested.
*
* @deprecated
*/
public void analysis_getReachableSources(String file, GetReachableSourcesConsumer consumer);

/**
* {@code analysis.getSignature}
*
Expand Down Expand Up @@ -317,7 +301,7 @@
*
* @deprecated
*/
public void analysis_updateOptions(AnalysisOptions options);

Check warning on line 304 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / Integration Tests (ubuntu-large)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 304 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / build-plugin

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 304 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / verify-plugin (ubuntu-large)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 304 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / unit-tests (macos-latest)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 304 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / unit-tests (ubuntu-latest)

[dep-ann] deprecated item is not annotated with @deprecated

/**
* {@code analytics.enable}
Expand Down Expand Up @@ -469,7 +453,7 @@
*
* @deprecated
*/
public void completion_registerLibraryPaths(List<LibraryPathSet> paths);

Check warning on line 456 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / Integration Tests (ubuntu-large)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 456 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / build-plugin

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 456 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / verify-plugin (ubuntu-large)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 456 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / unit-tests (macos-latest)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 456 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / unit-tests (ubuntu-latest)

[dep-ann] deprecated item is not annotated with @deprecated

/**
* {@code completion.setSubscriptions}
Expand Down Expand Up @@ -812,7 +796,7 @@
*
* @deprecated
*/
public void execution_setSubscriptions(List<String> subscriptions);

Check warning on line 799 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / Integration Tests (ubuntu-large)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 799 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / build-plugin

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 799 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / verify-plugin (ubuntu-large)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 799 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / unit-tests (macos-latest)

[dep-ann] deprecated item is not annotated with @deprecated

Check warning on line 799 in third_party/thirdPartySrc/analysisServer/com/google/dart/server/generated/AnalysisServer.java

View workflow job for this annotation

GitHub Actions / unit-tests (ubuntu-latest)

[dep-ann] deprecated item is not annotated with @deprecated

/**
* {@code flutter.getWidgetDescription}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,11 +331,6 @@ public void analysis_getNavigation(String file, int offset, int length, GetNavig
sendRequestToServer(id, RequestUtilities.generateAnalysisGetNavigation(id, file, offset, length), consumer);
}

@Override
public void analysis_getReachableSources(String file, GetReachableSourcesConsumer consumer) {
// TODO(scheglov) implement
}

@Override
public void analysis_getSignature(String file, int offset, GetSignatureConsumer consumer) {
}
Expand Down
Loading