Changeset 43139 in webkit for trunk/JavaScriptCore/runtime/JSValue.h
- Timestamp:
- May 1, 2009, 10:56:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSValue.h
r43138 r43139 84 84 // Numbers 85 85 JSValue(ExecState*, double); 86 JSValue(ExecState*, char); 87 JSValue(ExecState*, unsigned char); 88 JSValue(ExecState*, short); 89 JSValue(ExecState*, unsigned short); 86 90 JSValue(ExecState*, int); 87 91 JSValue(ExecState*, unsigned); … … 91 95 JSValue(ExecState*, unsigned long long); 92 96 JSValue(JSGlobalData*, double); 97 JSValue(JSGlobalData*, char); 98 JSValue(JSGlobalData*, unsigned char); 99 JSValue(JSGlobalData*, short); 100 JSValue(JSGlobalData*, unsigned short); 93 101 JSValue(JSGlobalData*, int); 94 102 JSValue(JSGlobalData*, unsigned); … … 238 246 } 239 247 248 ALWAYS_INLINE JSValue jsNumber(ExecState* exec, char i) 249 { 250 return JSValue(exec, i); 251 } 252 253 ALWAYS_INLINE JSValue jsNumber(ExecState* exec, unsigned char i) 254 { 255 return JSValue(exec, i); 256 } 257 258 ALWAYS_INLINE JSValue jsNumber(ExecState* exec, short i) 259 { 260 return JSValue(exec, i); 261 } 262 263 ALWAYS_INLINE JSValue jsNumber(ExecState* exec, unsigned short i) 264 { 265 return JSValue(exec, i); 266 } 267 240 268 ALWAYS_INLINE JSValue jsNumber(ExecState* exec, int i) 241 269 { … … 271 299 { 272 300 return JSValue(globalData, d); 301 } 302 303 ALWAYS_INLINE JSValue jsNumber(JSGlobalData* globalData, char i) 304 { 305 return JSValue(globalData, i); 306 } 307 308 ALWAYS_INLINE JSValue jsNumber(JSGlobalData* globalData, unsigned char i) 309 { 310 return JSValue(globalData, i); 311 } 312 313 ALWAYS_INLINE JSValue jsNumber(JSGlobalData* globalData, short i) 314 { 315 return JSValue(globalData, i); 316 } 317 318 ALWAYS_INLINE JSValue jsNumber(JSGlobalData* globalData, unsigned short i) 319 { 320 return JSValue(globalData, i); 273 321 } 274 322
Note:
See TracChangeset
for help on using the changeset viewer.