]> git.proxmox.com Git - pve-eslint.git/blob - eslint/tests/fixtures/code-path-analysis/switch--default-only-1.js
first commit
[pve-eslint.git] / eslint / tests / fixtures / code-path-analysis / switch--default-only-1.js
1 /*expected
2 initial->s1_1->final;
3 */
4 switch (a) {
5 default:
6 }
7
8 /*DOT
9 digraph {
10 node[shape=box,style="rounded,filled",fillcolor=white];
11 initial[label="",shape=circle,style=filled,fillcolor=black,width=0.25,height=0.25];
12 final[label="",shape=doublecircle,style=filled,fillcolor=black,width=0.25,height=0.25];
13 s1_1[label="Program\nSwitchStatement\nIdentifier (a)\nSwitchCase"];
14 initial->s1_1->final;
15 }
16 */