Changeset 15376 in webkit for trunk/JavaScriptCore/API/JSBase.h
- Timestamp:
- Jul 12, 2006, 1:12:08 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSBase.h
r15310 r15376 32 32 /*! @typedef JSContextRef A JavaScript execution context. Holds the global object and other execution state. */ 33 33 typedef struct __JSContext* JSContextRef; 34 /*! @typedef JS InternalString A UTF16 character buffer. The fundamental string representation in JavaScript. */35 typedef struct __JS InternalString* JSInternalStringRef;34 /*! @typedef JSString A UTF16 character buffer. The fundamental string representation in JavaScript. */ 35 typedef struct __JSString* JSStringRef; 36 36 /*! @typedef JSClassRef A JavaScript class. Used with JSObjectMake to construct objects with custom behavior. */ 37 37 typedef struct __JSClass* JSClassRef; … … 46 46 /*! @typedef JSValueRef A JavaScript value. The base type for all JavaScript values, and polymorphic functions on them. */ 47 47 typedef const struct __JSValue* JSValueRef; 48 49 48 /*! @typedef JSObjectRef A JavaScript object. A JSObject is a JSValue. */ 50 49 typedef struct __JSValue* JSObjectRef;
Note:
See TracChangeset
for help on using the changeset viewer.