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