Changeset 34607 in webkit for trunk/JavaScriptCore/API/JSCallbackObjectFunctions.h
- Timestamp:
- Jun 16, 2008, 4:28:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObjectFunctions.h
r34587 r34607 147 147 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 148 148 { 149 return getOwnPropertySlot(exec, Identifier::from( propertyName), slot);149 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot); 150 150 } 151 151 … … 194 194 void JSCallbackObject<Base>::put(ExecState* exec, unsigned propertyName, JSValue* value) 195 195 { 196 return put(exec, Identifier::from( propertyName), value);196 return put(exec, Identifier::from(exec, propertyName), value); 197 197 } 198 198 … … 234 234 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, unsigned propertyName) 235 235 { 236 return deleteProperty(exec, Identifier::from( propertyName));236 return deleteProperty(exec, Identifier::from(exec, propertyName)); 237 237 } 238 238 … … 345 345 StaticValueEntry* entry = it->second; 346 346 if (entry->getProperty && !(entry->attributes & kJSPropertyAttributeDontEnum)) 347 propertyNames.add(Identifier( name));347 propertyNames.add(Identifier(exec, name)); 348 348 } 349 349 } … … 356 356 StaticFunctionEntry* entry = it->second; 357 357 if (!(entry->attributes & kJSPropertyAttributeDontEnum)) 358 propertyNames.add(Identifier( name));358 propertyNames.add(Identifier(exec, name)); 359 359 } 360 360 }
Note:
See TracChangeset
for help on using the changeset viewer.