comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TruffleRuntime.java @ 15789:e44dd5a90947

a bit of javadoc in TruffleRuntime
author Lukas Stadler <lukas.stadler@oracle.com>
date Tue, 20 May 2014 15:17:43 +0200
parents 5634b199c4da
children f6ac86d3334e
comparison
equal deleted inserted replaced
15788:e84bdd23d22c 15789:e44dd5a90947
104 */ 104 */
105 MaterializedFrame createMaterializedFrame(Object[] arguments, FrameDescriptor frameDescriptor); 105 MaterializedFrame createMaterializedFrame(Object[] arguments, FrameDescriptor frameDescriptor);
106 106
107 /** 107 /**
108 * Accesses the current stack, i.e., the contents of the {@link Frame}s and the associated 108 * Accesses the current stack, i.e., the contents of the {@link Frame}s and the associated
109 * {@link CallTarget}s. 109 * {@link CallTarget}s. Iteration starts at the caller frame, i.e., it does not include the
110 * current frame.
110 * 111 *
111 * @return a lazy collection of {@link FrameInstance}. 112 * @return a lazy collection of {@link FrameInstance}.
112 */ 113 */
113 Iterable<FrameInstance> getStackTrace(); 114 Iterable<FrameInstance> getStackTrace();
114 115