comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/MaterializedFrame.java @ 9258:07f8d136a05e

Truffle API changes for the Frame API. Introduction of Assumptions class.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 23 Apr 2013 15:34:06 +0200
parents 5e3d1a68664e
children 494b818b527c
comparison
equal deleted inserted replaced
9257:542712a4732a 9258:07f8d136a05e
28 * the only frame instances that may be stored in fields or cast to {@link java.lang.Object}. In 28 * the only frame instances that may be stored in fields or cast to {@link java.lang.Object}. In
29 * contrast to a {@link VirtualFrame}, a {@link MaterializedFrame} can no longer be packed and it 29 * contrast to a {@link VirtualFrame}, a {@link MaterializedFrame} can no longer be packed and it
30 * also does not provide access to the caller frame. 30 * also does not provide access to the caller frame.
31 */ 31 */
32 public interface MaterializedFrame extends Frame { 32 public interface MaterializedFrame extends Frame {
33
33 } 34 }