mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-15 09:50:04 -04:00
17 lines
207 B
JavaScript
17 lines
207 B
JavaScript
|
|
function test() {
|
||
|
|
return [
|
||
|
|
{
|
||
|
|
test: "test",
|
||
|
|
test_one: "test",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
test: "test",
|
||
|
|
test_one: "test",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
test: "test",
|
||
|
|
test_one: "test",
|
||
|
|
},
|
||
|
|
];
|
||
|
|
}
|