-
Notifications
You must be signed in to change notification settings - Fork 16
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
Ждать в одном стейтменте #151
Conversation
src/main/antlr/BSLParser.g4
Outdated
@@ -242,7 +242,7 @@ member | |||
: unaryModifier? | |||
( | |||
constValue | |||
| complexIdentifier | |||
| WAIT_KEYWORD? complexIdentifier |
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.
вроде такая штука позволит сделать
Ждать А.А
, без вызова метода на конце. а такое нельзя
проверили, можно
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.
Кажется, что Ждать (Обещание) тоже возможен синтаксически, т.к. обещание в скобках это все равно обещание. Так же, как Возврат ("Что в скобках, что без скобок, разницы нет, т.к. это экспрешшен")
src/main/antlr/BSLParser.g4
Outdated
@@ -242,7 +242,7 @@ member | |||
: unaryModifier? | |||
( | |||
constValue | |||
| complexIdentifier | |||
| WAIT_KEYWORD? complexIdentifier |
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.
Кажется, что Ждать (Обещание) тоже возможен синтаксически, т.к. обещание в скобках это все равно обещание. Так же, как Возврат ("Что в скобках, что без скобок, разницы нет, т.к. это экспрешшен")
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Fix #152 #153
Fix 1c-syntax/bsl-language-server#1680