You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The latest version of codeanalyzer-java (2.3.0) introduces several new features, including support for Java Record Declarations, improved comment parsing, enhanced parameter location tracking, and better declaration reporting. However, these updates are not yet mirrored in the python-sdk project. This means users relying on the SDK do not have access to these enhancements, limiting their ability to analyze Java code effectively.
Describe the solution you'd like
The python-sdk should integrate the following updates from codeanalyzer-java to maintain feature parity:
Enrich comment analysis capabilities to improve insights into Javadoc, inline comments, and block comments.
Describe alternatives you've considered
An alternative approach would be to maintain a separate abstraction layer in python-sdk that does not directly mirror codeanalyzer-java. However, this would introduce inconsistency and make it harder for users to leverage the latest improvements.
Additional context
The changes in codeanalyzer-java include breaking updates, specifically for record declarations and parameter location parsing. Ensuring these updates are properly reflected in python-sdk will help maintain compatibility with Java code analysis workflows.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The latest version of
codeanalyzer-java
(2.3.0) introduces several new features, including support for Java Record Declarations, improved comment parsing, enhanced parameter location tracking, and better declaration reporting. However, these updates are not yet mirrored in thepython-sdk
project. This means users relying on the SDK do not have access to these enhancements, limiting their ability to analyze Java code effectively.Describe the solution you'd like
The
python-sdk
should integrate the following updates fromcodeanalyzer-java
to maintain feature parity:ParameterInCallable
support to capture line and column offsets, ensuring precise tracking of parameter locations.Describe alternatives you've considered
An alternative approach would be to maintain a separate abstraction layer in
python-sdk
that does not directly mirrorcodeanalyzer-java
. However, this would introduce inconsistency and make it harder for users to leverage the latest improvements.Additional context
The changes in
codeanalyzer-java
include breaking updates, specifically for record declarations and parameter location parsing. Ensuring these updates are properly reflected inpython-sdk
will help maintain compatibility with Java code analysis workflows.The text was updated successfully, but these errors were encountered: