tree-sitter-bp/test/highlight/modules.bp

22 lines
301 B
Plaintext
Raw Normal View History

foo {}
// <- function.call
foo ()
// <- function.call
foo {
// <- function.call
field: 12,
// <- variable.parameter
another_field: 27,
// <- variable.parameter
}
foo (
// <- function.call
field = 42,
// <- variable.parameter
done = false,
// <- variable.parameter
)