Remove "system_dependency_graph"
key from analysis.json
#130
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR removes the misnamed
system_dependency_graph
key from the outputanalysis.json
file, keeping only thecall_graph
key which accurately represents the data.Motivation and Context
The key
system_dependency_graph
in the outputanalysis.json
is a misnomer that doesn't accurately reflect the data it contains. This can lead to confusion for users who expect this key to represent something different than what it actually contains. Standardizing on the more accuratecall_graph
terminology improves clarity and consistency in the codebase.How Has This Been Tested?
The change has been tested by running the analysis tool on multiple codebases and verifying that:
analysis.json
file only contains thecall_graph
keysystem_dependency_graph
keyBreaking Changes
This is a breaking change for any users or tools that specifically reference the
system_dependency_graph
key in theanalysis.json
file. They will need to update their code to usecall_graph
instead.Types of changes
Checklist
Additional context
This change is part of an effort to improve naming consistency throughout the codebase. Any documentation that references the old key name has also been updated to reflect this change.