Changeset 15328 in webkit for trunk/JavaScriptCore/API/JSValueRef.h
- Timestamp:
- Jul 10, 2006, 10:37:00 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSValueRef.h
r15307 r15328 28 28 #define JSValueRef_h 29 29 30 #include "JSBase.h"30 #include <JavaScriptCore/JSBase.h> 31 31 32 32 /*! … … 189 189 @function 190 190 @abstract Creates a JavaScript value of the string type. 191 @param bufferThe JSInternalString to assign to the newly created JSValue. The192 newly created JSValue retains buffer, and releases it upon garbage collection.193 @result A JSValue of the string type, representing the string value of buffer.194 */ 195 JSValueRef JSStringMake(JSInternalStringRef buffer);191 @param string The JSInternalString to assign to the newly created JSValue. The 192 newly created JSValue retains string, and releases it upon garbage collection. 193 @result A JSValue of the string type, representing the string value of string. 194 */ 195 JSValueRef JSStringMake(JSInternalStringRef string); 196 196 197 197 // Converting to primitive values
Note:
See TracChangeset
for help on using the changeset viewer.