mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-10-04 10:28:39 +00:00
24 lines
877 B
JavaScript
24 lines
877 B
JavaScript
/*expected
|
|
initial->s1_1->s1_2->s1_3->s1_2->s1_2;
|
|
s1_3->s1_4;
|
|
s1_2->s1_4->final;
|
|
*/
|
|
do {
|
|
foo();
|
|
} while (a ?? b);
|
|
|
|
/*DOT
|
|
digraph {
|
|
node[shape=box,style="rounded,filled",fillcolor=white];
|
|
initial[label="",shape=circle,style=filled,fillcolor=black,width=0.25,height=0.25];
|
|
final[label="",shape=doublecircle,style=filled,fillcolor=black,width=0.25,height=0.25];
|
|
s1_1[label="Program\nDoWhileStatement"];
|
|
s1_2[label="BlockStatement\nExpressionStatement\nCallExpression\nIdentifier (foo)\nLogicalExpression\nIdentifier (a)\nIdentifier:exit (foo)\nCallExpression:exit\nExpressionStatement:exit\nBlockStatement:exit\nIdentifier:exit (a)"];
|
|
s1_3[label="Identifier (b)\nIdentifier:exit (b)\nLogicalExpression:exit"];
|
|
s1_4[label="DoWhileStatement:exit\nProgram:exit"];
|
|
initial->s1_1->s1_2->s1_3->s1_2->s1_2;
|
|
s1_3->s1_4;
|
|
s1_2->s1_4->final;
|
|
}
|
|
*/
|