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
If this had correct precedence I would expect two nodes (expr (expr (id)) (expr_list ...) next to each other; instead the function name of the second f gets incorrectly grouped next to the arguments of the first call.
The current "lightweight" impl also makes it impossible to match multiple function calls in the same expression, e.g., over in https://github.com/bbannier/zeek-language-server I cannot match all calls to compute parameter inlay hints, e.g.,
The text was updated successfully, but these errors were encountered:
When many function calls are part of the same expression they can be broken incorrectly, e.g., the following input
is formatted with a line break inside the function call
Looking at the produced CST this seems to be due to function calls in expressions not parsing correctly, e.g., with
I get
If this had correct precedence I would expect two nodes
(expr (expr (id)) (expr_list ...)
next to each other; instead the function name of the secondf
gets incorrectly grouped next to the arguments of the first call.The current "lightweight" impl also makes it impossible to match multiple function calls in the same expression, e.g., over in https://github.com/bbannier/zeek-language-server I cannot match all calls to compute parameter inlay hints, e.g.,
The text was updated successfully, but these errors were encountered: