mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
44 lines
723 B
Text
44 lines
723 B
Text
---
|
|
source: crates/oxc_semantic/tests/integration/cfg.rs
|
|
expression: snapshot
|
|
input_file: crates/oxc_semantic/tests/integration/cfg_fixtures/private_in.js
|
|
---
|
|
bb0: {
|
|
|
|
}
|
|
|
|
bb1: {
|
|
|
|
}
|
|
|
|
bb2: {
|
|
|
|
}
|
|
|
|
bb3: {
|
|
return <value>
|
|
}
|
|
|
|
bb4: {
|
|
unreachable
|
|
}
|
|
|
|
bb5: {
|
|
|
|
}
|
|
|
|
digraph {
|
|
0 [ label = "" ]
|
|
1 [ label = "" ]
|
|
2 [ label = "" ]
|
|
3 [ label = "return <value>" ]
|
|
4 [ label = "unreachable" ]
|
|
5 [ label = "" ]
|
|
1 -> 0 [ label = "Error(Implicit)" ]
|
|
3 -> 2 [ label = "Error(Implicit)" ]
|
|
1 -> 3 [ label = "NewFunction" ]
|
|
4 -> 2 [ label = "Error(Implicit)" , style = "dotted" ]
|
|
3 -> 4 [ label = "Unreachable" , style = "dotted" ]
|
|
5 -> 0 [ label = "Error(Implicit)" ]
|
|
1 -> 5 [ label = "Normal" ]
|
|
}
|