Changeset 29991 in webkit for trunk/JavaScriptCore/API/JSNode.c
- Timestamp:
- Feb 4, 2008, 9:51:58 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSNode.c
r29672 r29991 37 37 static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 38 38 { 39 UNUSED_PARAM(context);40 39 UNUSED_PARAM(function); 41 40 … … 61 60 static JSValueRef JSNode_removeChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 62 61 { 63 UNUSED_PARAM(context);64 62 UNUSED_PARAM(function); 65 63 … … 81 79 static JSValueRef JSNode_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) 82 80 { 83 UNUSED_PARAM(context);84 81 UNUSED_PARAM(function); 85 82 … … 110 107 static JSValueRef JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 111 108 { 112 UNUSED_PARAM(context);113 109 UNUSED_PARAM(propertyName); 114 110 UNUSED_PARAM(exception); … … 137 133 static JSValueRef JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 138 134 { 139 UNUSED_PARAM( context);135 UNUSED_PARAM(object); 140 136 UNUSED_PARAM(propertyName); 141 UNUSED_PARAM(object);142 137 UNUSED_PARAM(exception); 143 138
Note:
See TracChangeset
for help on using the changeset viewer.