aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/debugging.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/debugging.cpp')
-rw-r--r--src/v4/debugging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/v4/debugging.cpp b/src/v4/debugging.cpp
index 30ab4a1ed9..6137e64f89 100644
--- a/src/v4/debugging.cpp
+++ b/src/v4/debugging.cpp
@@ -295,7 +295,7 @@ static void realDumpValue(VM::Value v, VM::ExecutionContext *ctx, std::string pr
for (Value name = it.nextPropertyName(); !name.isNull(); name = it.nextPropertyName()) {
cout << prefix << "\t\"" << qPrintable(name.stringValue()->toQString()) << "\"" << endl;
PropertyAttributes attrs;
- Property *d = o->__getOwnProperty__(ctx, name.stringValue(), &attrs);
+ Property *d = o->__getOwnProperty__(name.stringValue(), &attrs);
Value pval = o->getValue(ctx, d, attrs);
cout << prefix << "\tvalue:" << endl;
realDumpValue(pval, ctx, prefix + "\t");