Changeset 15969 in webkit for trunk/JavaScriptCore/bindings/runtime_object.cpp
- Timestamp:
- Aug 22, 2006, 12:45:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_object.cpp
r13821 r15969 64 64 65 65 Class *aClass = instance->getClass(); 66 Field *aField = aClass->fieldNamed(propertyName .ascii(), instance);66 Field *aField = aClass->fieldNamed(propertyName, instance); 67 67 JSValue *result = instance->getValueOfField(exec, aField); 68 68 … … 96 96 if (aClass) { 97 97 // See if the instance has a field with the specified name. 98 Field *aField = aClass->fieldNamed(propertyName .ascii(), instance.get());98 Field *aField = aClass->fieldNamed(propertyName, instance.get()); 99 99 if (aField) { 100 100 slot.setCustom(this, fieldGetter); … … 131 131 132 132 // Set the value of the property. 133 Field *aField = instance->getClass()->fieldNamed(propertyName .ascii(), instance.get());133 Field *aField = instance->getClass()->fieldNamed(propertyName, instance.get()); 134 134 if (aField) { 135 135 getInternalInstance()->setValueOfField(exec, aField, value); … … 150 150 instance->begin(); 151 151 152 Field *aField = instance->getClass()->fieldNamed(propertyName .ascii(), instance.get());152 Field *aField = instance->getClass()->fieldNamed(propertyName, instance.get()); 153 153 154 154 instance->end();
Note:
See TracChangeset
for help on using the changeset viewer.