]> git.proxmox.com Git - pve-eslint.git/blob - eslint/tests/fixtures/code-path-analysis/for--empty.js
first commit
[pve-eslint.git] / eslint / tests / fixtures / code-path-analysis / for--empty.js
1 /*expected
2 initial->s1_1->s1_2->s1_2->s1_3;
3 */
4 for (;;) {
5 }
6
7 /*DOT
8 digraph {
9 node[shape=box,style="rounded,filled",fillcolor=white];
10 initial[label="",shape=circle,style=filled,fillcolor=black,width=0.25,height=0.25];
11 s1_1[label="Program\nForStatement"];
12 s1_2[label="BlockStatement"];
13 s1_3[style="rounded,dashed,filled",fillcolor="#FF9800",label="<<unreachable>>\nForStatement:exit\nProgram:exit"];
14 initial->s1_1->s1_2->s1_2->s1_3;
15 }
16 */