Address Issue 103: Extend ParameterInCallable
class to capture line and column offsets
#122
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.
Summary
Added source code position tracking (line/column) for parameters in method declarations to enable precise source code navigation and analysis in
codeanalyzer-java
.Motivation and Context
Previously, parameters in method declarations lacked source position information, making it difficult to accurately locate them in source code when performing navigation, cross-referencing, and precise code analysis.
This update adds start/end line and column positions to
ParameterInCallable
, enabling:analysis.json
.How Has This Been Tested?
parametersInCallableMustHaveStartAndEndLineAndColumns()
: Verifies that method parameters correctly store start/end line and column positions.Breaking Changes
This is a breaking change, because users consuming
analysis.json
should be aware of the new fields inParameterInCallable
:These fields will now appear in the serialized output.
Types of changes
Checklist
Additional Context
Changes Implemented
ParameterInCallable
to store position information:processParameterDeclaration
to extract positions using JavaParser: