7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8

Reviewed-by: jjg, mcimadamore
This commit is contained in:
Joe Darcy 2011-07-05 16:37:24 -07:00
parent 69c7455330
commit 01ee832f44
48 changed files with 1050 additions and 82 deletions

View file

@ -23,7 +23,7 @@
/*
* @test
* @bug 6993963
* @bug 6993963 7025809
* @summary Project Coin: Use precise exception analysis for effectively final catch parameters
* @library ../../lib
* @build JavacTestingAbstractProcessor ModelChecker
@ -107,7 +107,7 @@ public class ModelChecker extends JavacTestingAbstractProcessor {
; // Expected
}
UnionType unionType = new SimpleTypeVisitor7<UnionType, Void>(){
UnionType unionType = new SimpleTypeVisitor<UnionType, Void>(){
@Override
protected UnionType defaultAction(TypeMirror e, Void p) {return null;}