mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 11:20:07 -04:00
feat(indent): ecma - support try_catch and if_else
This commit is contained in:
parent
bb60706433
commit
8f9d4ada35
6 changed files with 75 additions and 0 deletions
13
tests/indent/ecma/if_else.js
Normal file
13
tests/indent/ecma/if_else.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
if (cond1) {
|
||||
do_1()
|
||||
|
||||
if (cond1a) {
|
||||
do_1a()
|
||||
} else {
|
||||
do_1_fallback()
|
||||
}
|
||||
} else if (cond2) {
|
||||
do_2()
|
||||
} else {
|
||||
do_fallback()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue