Searched defs:newThrown (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2486 public Type createMethodTypeWithThrown(Type original, List<Type> newThrown) { argument
2487 return original.accept(methodWithThrown, newThrown);
2491 public Type visitType(Type t, List<Type> newThrown) {
2494 public Type visitMethodType(MethodType t, List<Type> newThrown) {
2495 return new MethodType(t.argtypes, t.restype, newThrown, t.tsym);
2497 public Type visitForAll(ForAll t, List<Type> newThrown) {
2498 return new ForAll(t.tvars, t.qtype.accept(this, newThrown));

Completed in 43 milliseconds