mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
17 lines
363 B
Text
17 lines
363 B
Text
---
|
|
source: crates/oxc_semantic/tests/cfg.rs
|
|
expression: output.cfg_dot_diagram()
|
|
input_file: crates/oxc_semantic/tests/cfg_fixtures/conditional_expression.js
|
|
---
|
|
digraph {
|
|
0 [ label = ""]
|
|
1 [ label = ""]
|
|
2 [ label = ""]
|
|
3 [ label = ""]
|
|
4 [ label = "Unreachable()"]
|
|
3 -> 4 [ ]
|
|
1 -> 3 [ ]
|
|
0 -> 1 [ ]
|
|
0 -> 2 [ ]
|
|
2 -> 3 [ ]
|
|
}
|