summaryrefslogtreecommitdiff
path: root/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/switch-case-default-expected.js
blob: eb19424e24222c7c018af6f977f8690902a0a939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
switch (x) {
case "abc":
    return 1;
case "def":
    return 2;
default:
    return 3;
}

switch (x) {
case "abc":
    return 1;
case "def":
    return 2;
default:
    return 3;
}