nvim-treesitter/tests/indent/angular/switch-case.html

14 lines
170 B
HTML
Raw Permalink Normal View History

<div>
@switch (obj.property) {
@case (1) {
<p>Case 1</p>
}
@case (2) {
<p>Case 2</p>
}
@default {
<p>Default</p>
}
}
</div>