Finds flow between two methods
Recipe ID
org.openrewrite.analysis.search.FindFlowBetweenMethodsArtifact
org.openrewrite.meta:rewrite-analysisTakes two patterns for the start/end methods to find flow between.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.analysis.search.FindFlowBetweenMethods --recipe-option "startMethodPattern=java.util.List add(..)" --recipe-option "endMethodPattern=java.util.List add(..)" --recipe-option "target=<target>" --recipe-option "flow=<flow>"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.meta:rewrite-analysis:2.37.0Options
| Name | Type | Description |
|---|---|---|
startMethodPatternrequired | String | A method pattern that is used to find matching the start point's method invocations. e.g. java.util.List add(..) |
startMatchOverrides | Boolean | When enabled, find methods that are overrides of the method pattern. |
endMethodPatternrequired | String | A method pattern that is used to find matching the end point's method invocations. e.g. java.util.List add(..) |
endMatchOverrides | Boolean | When enabled, find methods that are overrides of the method pattern. |
targetrequired | String | The part of the method flow should traverse to |
flowrequired | String | When enabled, show the data or taint flow of the method invocation. |
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats