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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2502 public Type createMethodTypeWithReturn(Type original, Type newReturn) { argument
2503 return original.accept(methodWithReturn, newReturn);
2507 public Type visitType(Type t, Type newReturn) {
2510 public Type visitMethodType(MethodType t, Type newReturn) {
2511 return new MethodType(t.argtypes, newReturn, t.thrown, t.tsym);
2513 public Type visitForAll(ForAll t, Type newReturn) {
2514 return new ForAll(t.tvars, t.qtype.accept(this, newReturn));

Completed in 43 milliseconds