Changeset 1977 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Sep 5, 2002, 6:22:58 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/types.h
r1859 r1977 105 105 * copy of the list the referenced objects are still shared. 106 106 */ 107 class List : p ublicValue {107 class List : private Value { 108 108 friend class ListIterator; 109 109 public: 110 110 List(); 111 List(ListImp * v);111 List(ListImp *); 112 112 113 113 /** … … 192 192 */ 193 193 Value operator[](int i) const; 194 195 ListImp *imp() const { return (ListImp *)Value::imp(); } 196 194 197 /** 195 198 * Returns a pointer to a static instance of an empty list. Useful if a
Note:
See TracChangeset
for help on using the changeset viewer.