Changeset 47780 in webkit for trunk/JavaScriptCore/runtime/JSString.h
- Timestamp:
- Aug 26, 2009, 9:52:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSString.h
r47622 r47780 28 28 #include "Identifier.h" 29 29 #include "JSNumberCell.h" 30 #include "PropertyDescriptor.h" 30 31 #include "PropertySlot.h" 31 32 … … 87 88 bool getStringPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 88 89 bool getStringPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 90 bool getStringPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&); 89 91 90 92 bool canGetIndex(unsigned i) { return i < static_cast<unsigned>(m_value.size()); } … … 114 116 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 115 117 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 118 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&); 116 119 117 120 UString m_value;
Note:
See TracChangeset
for help on using the changeset viewer.