summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/PropertySlot.cpp
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
commit32761a6cee1d0dee366b885b7b9c777e67885688 (patch)
treed6bec92bebfb216f4126356e55518842c2f476a1 /Source/JavaScriptCore/runtime/PropertySlot.cpp
parenta4e969f4965059196ca948db781e52f7cfebf19e (diff)
downloadWebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz
webkitgtk-2.4.11webkitgtk-2.4.11
Diffstat (limited to 'Source/JavaScriptCore/runtime/PropertySlot.cpp')
-rw-r--r--Source/JavaScriptCore/runtime/PropertySlot.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/JavaScriptCore/runtime/PropertySlot.cpp b/Source/JavaScriptCore/runtime/PropertySlot.cpp
index ad555c7cf..c949f4bd2 100644
--- a/Source/JavaScriptCore/runtime/PropertySlot.cpp
+++ b/Source/JavaScriptCore/runtime/PropertySlot.cpp
@@ -23,7 +23,6 @@
#include "GetterSetter.h"
#include "JSCJSValueInlines.h"
-#include "JSObject.h"
namespace JSC {
@@ -33,10 +32,4 @@ JSValue PropertySlot::functionGetter(ExecState* exec) const
return callGetter(exec, m_thisValue, m_data.getter.getterSetter);
}
-JSValue PropertySlot::customGetter(ExecState* exec, PropertyName propertyName) const
-{
- JSValue thisValue = m_attributes & CustomAccessor ? m_thisValue : JSValue(slotBase());
- return JSValue::decode(m_data.custom.getValue(exec, JSValue::encode(thisValue), propertyName));
-}
-
} // namespace JSC