aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4proxy.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-06-18 09:44:59 +0200
committerLars Knoll <lars.knoll@qt.io>2018-06-25 07:36:38 +0000
commit4f5d83acf78c7e3e3f4b89190d6109a4c8fa574d (patch)
treea4b4503804c6861c5348ee0e9a16db78c46496bc /src/qml/jsruntime/qv4proxy.cpp
parent12319279538be50f83db3c2a1e68ccde8fd99814 (diff)
Fix length properties of global constructors
Change-Id: I4e9e1635f404082b0e8b333dc13a33d27e4f4b50 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4proxy.cpp')
-rw-r--r--src/qml/jsruntime/qv4proxy.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4proxy.cpp b/src/qml/jsruntime/qv4proxy.cpp
index 7bde34f880..310e6b4dac 100644
--- a/src/qml/jsruntime/qv4proxy.cpp
+++ b/src/qml/jsruntime/qv4proxy.cpp
@@ -318,6 +318,7 @@ void Heap::Proxy::init(QV4::ExecutionContext *ctx)
Scope scope(ctx);
Scoped<QV4::Proxy> ctor(scope, this);
ctor->defineDefaultProperty(QStringLiteral("revocable"), QV4::Proxy::method_revocable, 2);
+ ctor->defineReadonlyConfigurableProperty(scope.engine->id_length(), Primitive::fromInt32(2));
}
ReturnedValue Proxy::callAsConstructor(const FunctionObject *f, const Value *argv, int argc)