-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Неверное описание переменной в цикле "Для каждого" #3276
Неверное описание переменной в цикле "Для каждого" #3276
Conversation
Как описание переменной бралось описание ближайшей переменной описанной в блоке Перем. Изменил поведение, как описание берется "висящий" комментарий в строке с первой строкой описания цикла
WalkthroughВнесены изменения в метод Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Quality Gate passedIssues Measures |
@@ -229,6 +229,18 @@ private Optional<VariableDescription> createDescription(BSLParser.LValueContext | |||
); | |||
} | |||
|
|||
private Optional<VariableDescription> createDescription(BSLParser.ForEachStatementContext ctx) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А обычный "для" и "пока" не надо обработать?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Для" не анализировался как место создания переменно или уходило в другую ветку. Нужно будет проверить и добавить по необходимости.
"Пока" для создания символов не интересно, так как не создает переменную. Там условие выполнения цикла.
@@ -229,6 +229,18 @@ private Optional<VariableDescription> createDescription(BSLParser.LValueContext | |||
); | |||
} | |||
|
|||
private Optional<VariableDescription> createDescription(BSLParser.ForEachStatementContext ctx) { | |||
var trailingComments = Trees.getTrailingComment(documentContext.getTokens(), ctx.getStart()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лучше вместо getStart() дёрнуть узел с переменной
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (3)
- src/main/java/com/github/_1c_syntax/bsl/languageserver/context/computer/VariableSymbolComputer.java (1 hunks)
- src/test/java/com/github/_1c_syntax/bsl/languageserver/context/computer/VariableSymbolTest.java (6 hunks)
- src/test/resources/context/symbol/variableSymbolTest.bsl (1 hunks)
Additional comments not posted (9)
src/test/resources/context/symbol/variableSymbolTest.bsl (4)
60-62
: Изменения соответствуют целям PR, обработка циклов без висячих комментариев корректно реализована.
64-66
: Отлично, висячий комментарий для цикла корректно обрабатывается в соответствии с описанием PR.
68-70
: Изменения соответствуют целям PR, обработка циклов без висячих комментариев корректно реализована.
72-74
: Отлично, висячий комментарий для цикла корректно обрабатывается в соответствии с описанием PR.src/test/java/com/github/_1c_syntax/bsl/languageserver/context/computer/VariableSymbolTest.java (3)
Line range hint
55-69
: Обновление утверждений в тесте соответствует изменениям в обработке висячих комментариев. Дополнительные проверки диапазонов помогают обеспечить полноту валидации.
Line range hint
96-117
: Обновление утверждений и добавление новых проверок диапазонов в тесте соответствуют изменениям в обработке описаний переменных.
Line range hint
127-138
: Обновление утверждений в тесте соответствует изменениям в обработке висячих комментариев. Дополнительные проверки диапазонов помогают обеспечить полноту валидации.src/main/java/com/github/_1c_syntax/bsl/languageserver/context/computer/VariableSymbolComputer.java (2)
232-242
: МетодcreateDescription
дляForEachStatementContext
теперь корректно обрабатывает висячие комментарии, что соответствует целям PR.
244-254
: МетодcreateDescription
дляForStatementContext
теперь корректно обрабатывает висячие комментарии, что соответствует целям PR.
Описание
Как описание переменной бралось описание ближайшей переменной описанной в блоке Перем. Изменил поведение, как описание берется "висящий" комментарий в строке с первой строкой описания цикла
Связанные задачи
Задачи не было. Обсуждали в телеге. Примеры ошибки
Чеклист
Общие