aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/ecma/switch.js
blob: 590b7d35f78d0b63f7881c33f75b212d85c3180b (plain) (blame)
1
2
3
4
5
6
7
8
switch (variable) {
  case 'case1':
    foo();
    break;

  default:
    bar();
}