nvim-treesitter/tests/indent/ecma/if_else.js
2024-07-04 11:13:16 +09:00

19 lines
202 B
JavaScript

if (cond1) {
do_1()
if (cond1a) {
do_1a()
} else {
do_1_fallback()
}
} else if (cond2) {
do_2()
} else {
do_fallback()
}
if (true)
console.log('hi')
console.log('hi')
if (true)