aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4compiler_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-06-21 14:17:04 +0200
committerErik Verbruggen <erik.verbruggen@qt.io>2017-06-22 08:07:10 +0000
commit52e3a59b1de607636926822f1016f0e264bc4ad3 (patch)
tree59f589e84e9215a7393ad0ff9ae0d0e723b68ce3 /src/qml/compiler/qv4compiler_p.h
parent4cf290ab4394c56a8b2b0b482db8c995222b161f (diff)
Re-enable lookups
Change-Id: I02d57d2cbb4ae56c0c4626d96cbdf9935b366579 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4compiler_p.h')
-rw-r--r--src/qml/compiler/qv4compiler_p.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qml/compiler/qv4compiler_p.h b/src/qml/compiler/qv4compiler_p.h
index bdf39c887e..222b97ceb6 100644
--- a/src/qml/compiler/qv4compiler_p.h
+++ b/src/qml/compiler/qv4compiler_p.h
@@ -102,8 +102,11 @@ struct Q_QML_PRIVATE_EXPORT JSUnitGenerator {
QString stringForIndex(int index) const { return stringTable.stringForIndex(index); }
uint registerGetterLookup(const QString &name);
+ uint registerGetterLookup(int nameIndex);
uint registerSetterLookup(const QString &name);
+ uint registerSetterLookup(int nameIndex);
uint registerGlobalGetterLookup(const QString &name);
+ uint registerGlobalGetterLookup(int nameIndex);
uint registerIndexedGetterLookup();
uint registerIndexedSetterLookup();