diff options
author | Simon Hausmann <[email protected]> | 2013-08-15 12:48:05 +0200 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2013-08-15 15:28:37 +0200 |
commit | 7b2c9178b93fc31779c05553dcc48930d66342e2 (patch) | |
tree | 939b3247eeac5a1c480c80ce7bffda23980940bf /src/qml/jsruntime/qv4context.cpp | |
parent | ab44ecae18bba8aa09c6c12c37aca8f6df454cdc (diff) |
Ported lookups to use the compiled data infrastructure
Change-Id: Idf75cd51087ea825f22aabda59661be461fd3b86
Reviewed-by: Lars Knoll <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4context.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4context.cpp b/src/qml/jsruntime/qv4context.cpp index f6ba986a27..57d559b3ff 100644 --- a/src/qml/jsruntime/qv4context.cpp +++ b/src/qml/jsruntime/qv4context.cpp @@ -175,7 +175,7 @@ void CallContext::initCallContext(ExecutionContext *parentContext, FunctionObjec activation = 0; if (function->function) { - lookups = function->function->lookups; + lookups = function->function->compilationUnit->runtimeLookups; runtimeStrings = function->function->compilationUnit->runtimeStrings; } @@ -223,7 +223,7 @@ void CallContext::initQmlContext(ExecutionContext *parentContext, Object *qml, F activation = qml; - lookups = function->function->lookups; + lookups = function->function->compilationUnit->runtimeLookups; runtimeStrings = function->function->compilationUnit->runtimeStrings; locals = (Value *)(this + 1); |