comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiResolvedMethod.java @ 4442:dc6f6e2f1a00

Merge
author Christian Haeubl <christian.haeubl@oracle.com>
date Mon, 23 Jan 2012 13:37:40 -0800
parents f7251c729b31 d089b71a5237
children a0cca63cd366
comparison
equal deleted inserted replaced
4441:4e3aaf14cbc6 4442:dc6f6e2f1a00
204 * Returns a {@link Type} object that represents the formal return type of this method. 204 * Returns a {@link Type} object that represents the formal return type of this method.
205 * 205 *
206 * @see Method#getGenericReturnType() 206 * @see Method#getGenericReturnType()
207 */ 207 */
208 Type getGenericReturnType(); 208 Type getGenericReturnType();
209
210 /**
211 * @return {@code true} if this method can be inlined
212 */
213 boolean canBeInlined();
209 } 214 }