comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/Frame.java @ 21170:422f913e9310

Truffle: remove obsolete javadoc
author Andreas Woess <andreas.woess@oracle.com>
date Thu, 30 Apr 2015 23:58:00 +0200
parents 64dcb92ee75a
children
comparison
equal deleted inserted replaced
21169:41ec6d89cb84 21170:422f913e9310
165 */ 165 */
166 Object getValue(FrameSlot slot); 166 Object getValue(FrameSlot slot);
167 167
168 /** 168 /**
169 * Materializes this frame, which allows it to be stored in a field or cast to 169 * Materializes this frame, which allows it to be stored in a field or cast to
170 * {@link java.lang.Object}. The frame however looses the ability to be packed or to access the 170 * {@link java.lang.Object}.
171 * caller frame.
172 * 171 *
173 * @return the new materialized frame 172 * @return the new materialized frame
174 */ 173 */
175 MaterializedFrame materialize(); 174 MaterializedFrame materialize();
176 175