Changeset 4630 in webkit for trunk/JavaScriptCore/kjs/identifier.h
- Timestamp:
- Jul 12, 2003, 9:01:36 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/identifier.h
r4206 r4630 51 51 bool isEmpty() const { return _ustring.isEmpty(); } 52 52 53 unsigned long toULong(bool *ok) const { return _ustring.toULong(ok); }54 53 uint32_t toUInt32(bool *ok) const { return _ustring.toUInt32(ok); } 54 uint32_t toStrictUInt32(bool *ok) const { return _ustring.toStrictUInt32(ok); } 55 55 double toDouble() const { return _ustring.toDouble(); } 56 56
Note:
See TracChangeset
for help on using the changeset viewer.