Skip to content

Commit

Permalink
Merge branch 'master' into issue-50_5
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly-Protasov authored Oct 27, 2020
2 parents 0cdcfe5 + 71530b1 commit b7279c2
Show file tree
Hide file tree
Showing 3 changed files with 314 additions and 178 deletions.
10 changes: 9 additions & 1 deletion test/ast_framework/BlockStatementGraphExamples.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void singleIfThenBranch(int x) {
}
}

void singleIfTheElseBranches(int x) {
void singleIfThenElseBranches(int x) {
if(x > 0) {
x += 1;
} else {
Expand Down Expand Up @@ -132,6 +132,14 @@ void fullTryBlock(Exception e) {
}
}

void tryWithoutCatch(Exception e) {
try {
throw e;
}
finally {
}
}

void complexExample1(int x) {
x += 1;

Expand Down
Loading

0 comments on commit b7279c2

Please sign in to comment.