comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/Frame.java @ 7721:1a2d258d481a

Added getFrameDescriptor() to Frame interface.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 05 Feb 2013 17:03:51 +0100
parents 960a15fea39a
children 07f8d136a05e
comparison
equal deleted inserted replaced
7720:d71feabc9995 7721:1a2d258d481a
27 /** 27 /**
28 * Represents a frame containing values of local variables of the guest language. Instances of this 28 * Represents a frame containing values of local variables of the guest language. Instances of this
29 * type must not be stored in a field or cast to {@link java.lang.Object}. 29 * type must not be stored in a field or cast to {@link java.lang.Object}.
30 */ 30 */
31 public interface Frame { 31 public interface Frame {
32
33 /**
34 * @return the object describing the layout of this frame
35 */
36 FrameDescriptor getFrameDescriptor();
32 37
33 /** 38 /**
34 * @return the arguments used when calling this method 39 * @return the arguments used when calling this method
35 */ 40 */
36 Arguments getArguments(); 41 Arguments getArguments();