Skip to content

Commit

Permalink
test: πŸ’ snap
Browse files Browse the repository at this point in the history
  • Loading branch information
IWANABETHATGUY committed Sep 9, 2024
1 parent ca5e452 commit c0d4117
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ bb2: {

bb3: {
statement
return
}

bb4: {
Expand All @@ -26,15 +27,16 @@ bb4: {

bb5: {
statement
return
}

digraph {
0 [ label = "" ]
1 [ label = "ExpressionStatement\nVariableDeclaration" ]
2 [ label = "" ]
3 [ label = "ExpressionStatement" ]
3 [ label = "ExpressionStatement\nreturn" ]
4 [ label = "" ]
5 [ label = "ExpressionStatement" ]
5 [ label = "ExpressionStatement\nreturn" ]
1 -> 0 [ label = "Error(Implicit)" ]
3 -> 2 [ label = "Error(Implicit)" ]
1 -> 3 [ label = "NewFunction" ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ bb6: {
}

bb7: {

return
}

digraph {
Expand All @@ -43,7 +43,7 @@ digraph {
4 [ label = "Condition(CallExpression(a))" ]
5 [ label = "" ]
6 [ label = "" ]
7 [ label = "" ]
7 [ label = "return" ]
1 -> 0 [ label = "Error(Implicit)" ]
3 -> 2 [ label = "Error(Implicit)" ]
1 -> 3 [ label = "NewFunction" ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ bb2: {

bb3: {
statement
return
}

digraph {
0 [ label = "" ]
1 [ label = "ExpressionStatement" ]
2 [ label = "" ]
3 [ label = "ExpressionStatement" ]
3 [ label = "ExpressionStatement\nreturn" ]
1 -> 0 [ label = "Error(Implicit)" ]
3 -> 2 [ label = "Error(Implicit)" ]
1 -> 3 [ label = "NewFunction" ]
Expand Down

0 comments on commit c0d4117

Please sign in to comment.