Changeset 18715 in webkit for trunk/JavaScriptCore/kjs/value.h
- Timestamp:
- Jan 9, 2007, 9:38:46 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/value.h
r17372 r18715 95 95 96 96 // Integer conversions. 97 double toInteger(ExecState *exec) const;97 double toInteger(ExecState*) const; 98 98 int32_t toInt32(ExecState*) const; 99 99 int32_t toInt32(ExecState*, bool& ok) const; 100 uint32_t toUInt32(ExecState *exec) const; 101 uint16_t toUInt16(ExecState *exec) const; 100 uint32_t toUInt32(ExecState*) const; 101 uint32_t toUInt32(ExecState*, bool& ok) const; 102 uint16_t toUInt16(ExecState*) const; 102 103 103 104 // Garbage collection. … … 109 110 JSCell *downcast(); 110 111 const JSCell *downcast() const; 111 inline int32_t toInt32Inline(ExecState*, bool& ok) const;112 112 113 113 // Give a compile time error if we try to copy one of these.
Note:
See TracChangeset
for help on using the changeset viewer.