spacevim/bundle/nvim-treesitter-0.9.1/tests/query/highlights/hack/async-functions.hack

9 lines
226 B
Plaintext
Raw Normal View History

2024-08-21 14:17:26 +08:00
async function func0(): void {}
// ^ type.builtin
async function func1<T1 as int>() {}
// ^ type.builtin
// ^ keyword.operator
async ($x) ==> $x + 1;