Changeset 2760 in webkit for trunk/JavaScriptCore/kjs/internal.h
- Timestamp:
- Nov 19, 2002, 2:02:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/internal.h
r2753 r2760 154 154 * the stack and returns true, otherwise returns false 155 155 */ 156 bool push(const UString&id);156 bool push(const Identifier &id); 157 157 /** 158 158 * Is the id in the stack? 159 159 */ 160 bool contains(const UString&id) const;160 bool contains(const Identifier &id) const; 161 161 /** 162 162 * Removes from the stack the last pushed id (what else?) … … 165 165 private: 166 166 struct StackElem { 167 UStringid;167 Identifier id; 168 168 StackElem *prev; 169 169 };
Note:
See TracChangeset
for help on using the changeset viewer.