2021-01-05 19:26:08 +07:00
|
|
|
[
|
|
|
|
|
(import_declaration)
|
|
|
|
|
(const_declaration)
|
|
|
|
|
(var_declaration)
|
|
|
|
|
(type_declaration)
|
|
|
|
|
(func_literal)
|
2021-01-15 13:40:34 +07:00
|
|
|
(literal_value)
|
|
|
|
|
(expression_case)
|
2023-02-24 03:58:50 -05:00
|
|
|
(communication_case)
|
2023-03-03 20:26:51 -08:00
|
|
|
(type_case)
|
2021-01-15 13:40:34 +07:00
|
|
|
(default_case)
|
2021-01-05 19:26:08 +07:00
|
|
|
(block)
|
2022-02-04 23:35:30 +01:00
|
|
|
(call_expression)
|
|
|
|
|
(parameter_list)
|
2024-07-05 21:48:45 +09:00
|
|
|
(field_declaration_list)
|
|
|
|
|
(interface_type)
|
2023-03-20 14:44:39 -07:00
|
|
|
] @indent.begin
|
2021-01-05 19:26:08 +07:00
|
|
|
|
2024-07-05 21:48:45 +09:00
|
|
|
(literal_value
|
|
|
|
|
"}" @indent.branch)
|
|
|
|
|
|
|
|
|
|
(block
|
|
|
|
|
"}" @indent.branch)
|
|
|
|
|
|
|
|
|
|
(field_declaration_list
|
|
|
|
|
"}" @indent.branch)
|
|
|
|
|
|
|
|
|
|
(interface_type
|
|
|
|
|
"}" @indent.branch)
|
2024-01-06 15:05:50 +09:00
|
|
|
|
|
|
|
|
(const_declaration
|
|
|
|
|
")" @indent.branch)
|
2021-03-01 20:20:37 +07:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(import_spec_list
|
|
|
|
|
")" @indent.branch)
|
|
|
|
|
|
2024-08-17 06:39:32 +00:00
|
|
|
(var_spec_list
|
2024-01-06 15:05:50 +09:00
|
|
|
")" @indent.branch)
|
2022-07-02 12:47:05 +02:00
|
|
|
|
2022-04-16 10:53:22 +01:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"}"
|
|
|
|
|
")"
|
2023-03-20 14:44:39 -07:00
|
|
|
] @indent.end
|
2022-04-16 10:53:22 +01:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(parameter_list
|
|
|
|
|
")" @indent.branch)
|
2022-02-04 23:15:38 +01:00
|
|
|
|
2023-03-20 14:44:39 -07:00
|
|
|
(comment) @indent.ignore
|