aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4managed_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-09-19 15:27:41 +0200
committerLars Knoll <lars.knoll@qt.io>2018-09-27 08:34:10 +0000
commit7c592625032a98f68fd6a09026e466c5fbc7bb09 (patch)
tree4ab9182d3b1468941226652ad0816e1f0c00e66b /src/qml/jsruntime/qv4managed_p.h
parent9df44b2b502f9ab9a379c8454b000d2085aed744 (diff)
Unify layout of function objects
Ensure we have the proto property at always the same place. This will be used in a subsequent commit to optimize accesses to the prototype property e.g. when doing instanceof operations or constructor calls. Change-Id: I6e9a19e0b7d0e8ab583648a60d1978f5cf838b06 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4managed_p.h')
-rw-r--r--src/qml/jsruntime/qv4managed_p.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4managed_p.h b/src/qml/jsruntime/qv4managed_p.h
index 0ca921b98a..d85b30a056 100644
--- a/src/qml/jsruntime/qv4managed_p.h
+++ b/src/qml/jsruntime/qv4managed_p.h
@@ -233,6 +233,10 @@ struct InternalClass : Managed
return d()->addMember(identifier, data, entry);
}
+ Q_REQUIRED_RESULT Heap::InternalClass *changeMember(PropertyKey identifier, PropertyAttributes data, InternalClassEntry *entry = nullptr) {
+ return d()->changeMember(identifier, data, entry);
+ }
+
void operator =(Heap::InternalClass *ic) {
Value::operator=(ic);
}