mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
37 lines
547 B
Text
37 lines
547 B
Text
---
|
|
source: crates/oxc_semantic/tests/integration/cfg.rs
|
|
expression: snapshot
|
|
input_file: crates/oxc_semantic/tests/integration/cfg_fixtures/class.js
|
|
---
|
|
bb0: {
|
|
|
|
}
|
|
|
|
bb1: {
|
|
|
|
}
|
|
|
|
bb2: {
|
|
|
|
}
|
|
|
|
bb3: {
|
|
statement
|
|
}
|
|
|
|
bb4: {
|
|
|
|
}
|
|
|
|
digraph {
|
|
0 [ label = "" ]
|
|
1 [ label = "" ]
|
|
2 [ label = "" ]
|
|
3 [ label = "ExpressionStatement" ]
|
|
4 [ label = "" ]
|
|
1 -> 0 [ label = "Error(Implicit)" ]
|
|
3 -> 2 [ label = "Error(Implicit)" ]
|
|
1 -> 3 [ label = "NewFunction" ]
|
|
4 -> 0 [ label = "Error(Implicit)" ]
|
|
1 -> 4 [ label = "Normal" ]
|
|
}
|