comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/frame/FrameDescriptor.java @ 11808:0c4d7b468dd7

include isValid in Assumption.toString(); minor javadoc fix.
author Andreas Woess <andreas.woess@jku.at>
date Wed, 25 Sep 2013 17:31:55 +0200
parents 75d9b7aedcfd
children 91a676d0bbbe
comparison
equal deleted inserted replaced
11807:039b133ded75 11808:0c4d7b468dd7
91 public List<? extends FrameSlot> getSlots() { 91 public List<? extends FrameSlot> getSlots() {
92 return Collections.unmodifiableList(slots); 92 return Collections.unmodifiableList(slots);
93 } 93 }
94 94
95 /** 95 /**
96 * (db) to retrieve the list of all the identifiers associated with this frame descriptor. 96 * Retrieve the list of all the identifiers associated with this frame descriptor.
97 * 97 *
98 * @return the list of all the identifiers in this frame descriptor 98 * @return the list of all the identifiers in this frame descriptor
99 */ 99 */
100 public Set<Object> getIdentifiers() { 100 public Set<Object> getIdentifiers() {
101 return Collections.unmodifiableSet(identifierToSlotMap.keySet()); 101 return Collections.unmodifiableSet(identifierToSlotMap.keySet());