mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
6964740: Project Coin: More tests for ARM compiler changes 6965277: Project Coin: Correctness issues in ARM implementation 6967065: add -Xlint warning category for Automatic Resource Management (ARM) Reviewed-by: jjb, darcy, mcimadamore, jjg, briangoetz
This commit is contained in:
parent
9c273720d6
commit
985efdc475
51 changed files with 1950 additions and 18 deletions
|
@ -49,4 +49,5 @@ public interface TryTree extends StatementTree {
|
|||
BlockTree getBlock();
|
||||
List<? extends CatchTree> getCatches();
|
||||
BlockTree getFinallyBlock();
|
||||
List<? extends Tree> getResources();
|
||||
}
|
||||
|
|
|
@ -209,7 +209,8 @@ public class TreeScanner<R,P> implements TreeVisitor<R,P> {
|
|||
}
|
||||
|
||||
public R visitTry(TryTree node, P p) {
|
||||
R r = scan(node.getBlock(), p);
|
||||
R r = scan(node.getResources(), p);
|
||||
r = scanAndReduce(node.getBlock(), p, r);
|
||||
r = scanAndReduce(node.getCatches(), p, r);
|
||||
r = scanAndReduce(node.getFinallyBlock(), p, r);
|
||||
return r;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue