Changeset 29506 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 15, 2008, 9:23:06 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSBase.h
r28311 r29506 38 38 typedef struct OpaqueJSContext* JSGlobalContextRef; 39 39 40 /*! @typedef JSString A UTF16 character buffer. The fundamental string representation in JavaScript. */40 /*! @typedef JSStringRef A UTF16 character buffer. The fundamental string representation in JavaScript. */ 41 41 typedef struct OpaqueJSString* JSStringRef; 42 42 -
trunk/JavaScriptCore/API/JSObjectRef.h
r28311 r29506 187 187 @discussion If you named your function GetPropertyNames, you would declare it like this: 188 188 189 void GetPropertyNames(JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef accumulator);189 void GetPropertyNames(JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames); 190 190 191 191 Property name accumulators are used by JSObjectCopyPropertyNames and JavaScript for...in loops. -
trunk/JavaScriptCore/API/JSStringRef.h
r28097 r29506 37 37 #endif 38 38 39 #if !defined(WIN32) && !defined(_WIN32) 39 40 /*! 40 41 @typedef JSChar 41 42 @abstract A Unicode character. 42 43 */ 43 #if !defined(WIN32) && !defined(_WIN32)44 44 typedef unsigned short JSChar; 45 45 #else -
trunk/JavaScriptCore/API/JSValueRef.h
r28097 r29506 156 156 @param ctx The execution context to use. 157 157 @param value The JSValue to test. 158 @param objectThe constructor to test against.158 @param constructor The constructor to test against. 159 159 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. 160 160 @result true if value is an object constructed by constructor, as compared by the JS instanceof operator, otherwise false. -
trunk/JavaScriptCore/ChangeLog
r29505 r29506 1 2008-01-15 Geoffrey Garen <[email protected]> 2 3 Reviewed by Adam Roben. 4 5 Some tweaks to our headerdoc, suggested by David Gatwood on the docs 6 team. 7 8 * API/JSBase.h: 9 * API/JSObjectRef.h: 10 * API/JSStringRef.h: 11 * API/JSValueRef.h: 12 1 13 2008-01-15 Alp Toker <[email protected]> 2 14
Note:
See TracChangeset
for help on using the changeset viewer.