Changeset 37126 in webkit for trunk/JavaScriptCore/API/JSObjectRef.h
- Timestamp:
- Sep 30, 2008, 4:58:35 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.h
r36784 r37126 30 30 #include <JavaScriptCore/JSBase.h> 31 31 #include <JavaScriptCore/JSValueRef.h> 32 #include <JavaScriptCore/WebKitAvailability.h> 32 33 33 34 #ifndef __cplusplus … … 441 442 is supplied, this function returns an array with one element. 442 443 */ 443 JS_EXPORT JSObjectRef JSObjectMakeArray(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) ;444 JS_EXPORT JSObjectRef JSObjectMakeArray(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_AFTER_WEBKIT_VERSION_3_1; 444 445 445 446 /*! … … 452 453 @result A JSObject that is a Date. 453 454 */ 454 JS_EXPORT JSObjectRef JSObjectMakeDate(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) ;455 JS_EXPORT JSObjectRef JSObjectMakeDate(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_AFTER_WEBKIT_VERSION_3_1; 455 456 456 457 /*! … … 463 464 @result A JSObject that is a Error. 464 465 */ 465 JS_EXPORT JSObjectRef JSObjectMakeError(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) ;466 JS_EXPORT JSObjectRef JSObjectMakeError(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_AFTER_WEBKIT_VERSION_3_1; 466 467 467 468 /*! … … 474 475 @result A JSObject that is a RegExp. 475 476 */ 476 JS_EXPORT JSObjectRef JSObjectMakeRegExp(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) ;477 JS_EXPORT JSObjectRef JSObjectMakeRegExp(JSContextRef ctx, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_AFTER_WEBKIT_VERSION_3_1; 477 478 478 479 /*!
Note:
See TracChangeset
for help on using the changeset viewer.