Skip to content

Commit

Permalink
test: update snapshots.
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvxa committed Apr 29, 2024
1 parent 22c9063 commit 84f7348
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ input_file: crates/oxc_semantic/tests/cfg_fixtures/cond_expr_in_arrow_fn.js
digraph {
0 [ label = ""]
1 [ label = ""]
2 [ label = ""]
3 [ label = ""]
4 [ label = ""]
5 [ label = "Unreachable()"]
0 -> 1 [ ]
4 -> 5 [ ]
2 -> 4 [ ]
1 -> 2 [ ]
1 -> 3 [ ]
3 -> 4 [ ]
}

Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,19 @@ bb0: {
bb1: {

}

bb2: {

}

bb3: {

}

bb4: {

}

bb5: {
Unreachable()
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,13 @@ 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 [ ]
}

Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,19 @@ input_file: crates/oxc_semantic/tests/cfg_fixtures/conditional_expression.js
bb0: {

}

bb1: {

}

bb2: {

}

bb3: {

}

bb4: {
Unreachable()
}

0 comments on commit 84f7348

Please sign in to comment.