diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/PropertySlot.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/PropertySlot.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/JavaScriptCore/runtime/PropertySlot.h b/Source/JavaScriptCore/runtime/PropertySlot.h index cfedf7876..131cf7a92 100644 --- a/Source/JavaScriptCore/runtime/PropertySlot.h +++ b/Source/JavaScriptCore/runtime/PropertySlot.h @@ -21,8 +21,8 @@ #ifndef PropertySlot_h #define PropertySlot_h -#include "Identifier.h" #include "JSValue.h" +#include "PropertyName.h" #include "Register.h" #include <wtf/Assertions.h> #include <wtf/NotFound.h> @@ -61,10 +61,10 @@ namespace JSC { clearValue(); } - typedef JSValue (*GetValueFunc)(ExecState*, JSValue slotBase, const Identifier&); + typedef JSValue (*GetValueFunc)(ExecState*, JSValue slotBase, PropertyName); typedef JSValue (*GetIndexValueFunc)(ExecState*, JSValue slotBase, unsigned); - JSValue getValue(ExecState* exec, const Identifier& propertyName) const + JSValue getValue(ExecState* exec, PropertyName propertyName) const { if (m_getValue == JSC_VALUE_MARKER) return m_value; |