Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(goast): improve handling of qualified identifiers in GoFullI…
…dentListener Updated the `GoFullIdentListener` to better manage qualified identifiers by resolving local variable references within a qualified expression. This change ensures that when a qualified identifier is encountered (e.g., `d.Field`), if the first part of the identifier (local variable `d`) is present in the local variables map, it is replaced accordingly (e.g., `Dao.Field`). Additionally, removed a println statement and corrected an assertion in the `GoFullIdentListenerTest` to reflect the expected node name with the updated handling of qualified identifiers.
- Loading branch information