1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-26 14:30:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/hack/async-functions.hack
2022-04-14 12:01:23 +08:00

9 lines
226 B
Plaintext
Vendored

async function func0(): void {}
// ^ type.builtin
async function func1<T1 as int>() {}
// ^ type.builtin
// ^ keyword.operator
async ($x) ==> $x + 1;