mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 19:46:58 -04:00
14 lines
151 B
Text
14 lines
151 B
Text
primitive long_parameter_list(
|
|
a: int,
|
|
b: string,
|
|
c: type
|
|
)
|
|
|
|
function f() =
|
|
(
|
|
long_parameter_list(
|
|
1,
|
|
"2",
|
|
nil
|
|
)
|
|
)
|