aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4script.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-08-15 12:48:05 +0200
committerLars Knoll <lars.knoll@digia.com>2013-08-15 15:28:37 +0200
commit7b2c9178b93fc31779c05553dcc48930d66342e2 (patch)
tree939b3247eeac5a1c480c80ce7bffda23980940bf /src/qml/jsruntime/qv4script.cpp
parentab44ecae18bba8aa09c6c12c37aca8f6df454cdc (diff)
Ported lookups to use the compiled data infrastructure
Change-Id: Idf75cd51087ea825f22aabda59661be461fd3b86 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4script.cpp')
-rw-r--r--src/qml/jsruntime/qv4script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4script.cpp b/src/qml/jsruntime/qv4script.cpp
index 59b52c395b..70ab3d4d1d 100644
--- a/src/qml/jsruntime/qv4script.cpp
+++ b/src/qml/jsruntime/qv4script.cpp
@@ -205,7 +205,7 @@ Value Script::run()
String **oldRuntimeStrings = scope->runtimeStrings;
scope->strictMode = vmFunction->isStrict();
- scope->lookups = vmFunction->lookups;
+ scope->lookups = vmFunction->compilationUnit->runtimeLookups;
scope->runtimeStrings = vmFunction->compilationUnit->runtimeStrings;
QV4::Value result;