Remove trailing commas in 'select_value' arguments
This commit is contained in:
parent
7d8f958a90
commit
8166742493
4 changed files with 738 additions and 779 deletions
|
|
@ -226,6 +226,34 @@ foo = select(release_variable("ONE", "TWO"), {
|
|||
(default)
|
||||
(interpreted_string_literal))))))
|
||||
|
||||
================================================================================
|
||||
Select (trailing comma in arguments)
|
||||
================================================================================
|
||||
|
||||
foo = select(some_boolean("VALUE",), {
|
||||
true: "true",
|
||||
false: "false",
|
||||
})
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(assignment
|
||||
(identifier)
|
||||
(operator)
|
||||
(select_expression
|
||||
(select_value
|
||||
(identifier)
|
||||
(interpreted_string_literal)
|
||||
(ERROR))
|
||||
(select_cases
|
||||
(select_case
|
||||
(boolean_literal)
|
||||
(interpreted_string_literal))
|
||||
(select_case
|
||||
(boolean_literal)
|
||||
(interpreted_string_literal))))))
|
||||
|
||||
================================================================================
|
||||
Select (boolean typed)
|
||||
================================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue