1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-29 10:50:06 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/ecma/if_else.js
2022-04-14 12:01:23 +08:00

14 lines
142 B
JavaScript
Vendored

if (cond1) {
do_1()
if (cond1a) {
do_1a()
} else {
do_1_fallback()
}
} else if (cond2) {
do_2()
} else {
do_fallback()
}