mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
64 lines
1.1 KiB
Text
64 lines
1.1 KiB
Text
---
|
|
source: crates/oxc_semantic/tests/integration/cfg.rs
|
|
expression: snapshot
|
|
input_file: crates/oxc_semantic/tests/integration/cfg_fixtures/assignment_operators.js
|
|
---
|
|
bb0: {
|
|
|
|
}
|
|
|
|
bb1: {
|
|
statement
|
|
}
|
|
|
|
bb2: {
|
|
|
|
}
|
|
|
|
bb3: {
|
|
statement
|
|
}
|
|
|
|
bb4: {
|
|
|
|
}
|
|
|
|
bb5: {
|
|
statement
|
|
}
|
|
|
|
bb6: {
|
|
|
|
}
|
|
|
|
bb7: {
|
|
statement
|
|
statement
|
|
}
|
|
|
|
digraph {
|
|
0 [ label = "" ]
|
|
1 [ label = "ExpressionStatement" ]
|
|
2 [ label = "" ]
|
|
3 [ label = "ExpressionStatement" ]
|
|
4 [ label = "" ]
|
|
5 [ label = "ExpressionStatement" ]
|
|
6 [ label = "" ]
|
|
7 [ label = "ExpressionStatement\nExpressionStatement" ]
|
|
1 -> 0 [ label = "Error(Implicit)" ]
|
|
2 -> 0 [ label = "Error(Implicit)" ]
|
|
3 -> 0 [ label = "Error(Implicit)" ]
|
|
1 -> 2 [ label = "Normal" ]
|
|
1 -> 3 [ label = "Normal" ]
|
|
2 -> 3 [ label = "Normal" ]
|
|
4 -> 0 [ label = "Error(Implicit)" ]
|
|
5 -> 0 [ label = "Error(Implicit)" ]
|
|
3 -> 4 [ label = "Normal" ]
|
|
3 -> 5 [ label = "Normal" ]
|
|
4 -> 5 [ label = "Normal" ]
|
|
6 -> 0 [ label = "Error(Implicit)" ]
|
|
7 -> 0 [ label = "Error(Implicit)" ]
|
|
5 -> 6 [ label = "Normal" ]
|
|
5 -> 7 [ label = "Normal" ]
|
|
6 -> 7 [ label = "Normal" ]
|
|
}
|