nvim-treesitter/tests/indent/ecma/if_else.js

20 lines
202 B
JavaScript
Raw Normal View History

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)