Changeset 15168 in webkit for trunk/JavaScriptCore/API/JSObjectRef.cpp
- Timestamp:
- Jul 5, 2006, 12:10:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.cpp
r15165 r15168 71 71 } 72 72 73 JSObjectRef JSFunctionMakeWithBody(JSContextRef context, JS CharBufferRef body, JSCharBufferRef sourceURL, int startingLineNumber)73 JSObjectRef JSFunctionMakeWithBody(JSContextRef context, JSStringBufferRef body, JSStringBufferRef sourceURL, int startingLineNumber) 74 74 { 75 75 JSLock lock; … … 89 89 } 90 90 91 JS CharBufferRef JSObjectGetDescription(JSObjectRef object)91 JSStringBufferRef JSObjectGetDescription(JSObjectRef object) 92 92 { 93 93 JSLock lock; … … 110 110 } 111 111 112 bool JSObjectHasProperty(JSContextRef context, JSObjectRef object, JS CharBufferRef propertyName)112 bool JSObjectHasProperty(JSContextRef context, JSObjectRef object, JSStringBufferRef propertyName) 113 113 { 114 114 JSLock lock; … … 120 120 } 121 121 122 bool JSObjectGetProperty(JSContextRef context, JSObjectRef object, JS CharBufferRef propertyName, JSValueRef* value)122 bool JSObjectGetProperty(JSContextRef context, JSObjectRef object, JSStringBufferRef propertyName, JSValueRef* value) 123 123 { 124 124 JSLock lock; … … 131 131 } 132 132 133 bool JSObjectSetProperty(JSContextRef context, JSObjectRef object, JS CharBufferRef propertyName, JSValueRef value, JSPropertyAttributes attributes)133 bool JSObjectSetProperty(JSContextRef context, JSObjectRef object, JSStringBufferRef propertyName, JSValueRef value, JSPropertyAttributes attributes) 134 134 { 135 135 JSLock lock; … … 147 147 } 148 148 149 bool JSObjectDeleteProperty(JSContextRef context, JSObjectRef object, JS CharBufferRef propertyName)149 bool JSObjectDeleteProperty(JSContextRef context, JSObjectRef object, JSStringBufferRef propertyName) 150 150 { 151 151 JSLock lock; … … 255 255 } 256 256 257 JS CharBufferRef JSPropertyEnumeratorGetNext(JSContextRef context, JSPropertyEnumeratorRef enumerator)257 JSStringBufferRef JSPropertyEnumeratorGetNext(JSContextRef context, JSPropertyEnumeratorRef enumerator) 258 258 { 259 259 ExecState* exec = toJS(context); … … 278 278 } 279 279 280 void JSPropertyListAdd(JSPropertyListRef propertyList, JSObjectRef thisObject, JS CharBufferRef propertyName)280 void JSPropertyListAdd(JSPropertyListRef propertyList, JSObjectRef thisObject, JSStringBufferRef propertyName) 281 281 { 282 282 JSLock lock;
Note:
See TracChangeset
for help on using the changeset viewer.