diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-02-03 09:11:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-03 09:11:04 -0800 |
commit | eacd662ccb755a8663a2e9e3658f8d600931b26e (patch) | |
tree | fcaf47e45c21893496a04570b84bf4874ef916a9 /test/functional/treesitter/parser_spec.lua | |
parent | 720ec5cec2df6aca08c1410647f01584a48bac35 (diff) | |
parent | 8543aa406c4ae88cc928372b2f8105005cdd0a80 (diff) | |
download | rneovim-eacd662ccb755a8663a2e9e3658f8d600931b26e.tar.gz rneovim-eacd662ccb755a8663a2e9e3658f8d600931b26e.tar.bz2 rneovim-eacd662ccb755a8663a2e9e3658f8d600931b26e.zip |
Merge #32082 refactor(treesitter): use coroutines for resuming _parse()
Diffstat (limited to 'test/functional/treesitter/parser_spec.lua')
-rw-r--r-- | test/functional/treesitter/parser_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/treesitter/parser_spec.lua b/test/functional/treesitter/parser_spec.lua index a6d3a340f7..eb4651a81d 100644 --- a/test/functional/treesitter/parser_spec.lua +++ b/test/functional/treesitter/parser_spec.lua @@ -633,7 +633,7 @@ int x = INT_MAX; }, get_ranges()) n.feed('7ggI//<esc>') - exec_lua([[parser:parse({6, 7})]]) + exec_lua([[parser:parse({5, 6})]]) eq('table', exec_lua('return type(parser:children().c)')) eq(2, exec_lua('return #parser:children().c:trees()')) eq({ |