diff options
| author | Lars Knoll <lars.knoll@qt.io> | 2018-04-06 10:20:08 +0200 |
|---|---|---|
| committer | Lars Knoll <lars.knoll@qt.io> | 2018-05-02 14:17:51 +0000 |
| commit | 922e6f42b4fa9b9fa87246c577c13bb945bd4bc4 (patch) | |
| tree | 182cf430b7340c4f34c0cb350af1c15fd41b6648 /src/qml/compiler/qv4compileddata.cpp | |
| parent | 20d30b6b3a253eebedc927dbb91685bbec52cfee (diff) | |
Rework catch context handling
Remove the need for a specialized catch context, instead
use a regular block context, that also captures the
catched variable.
This also removes the need to do lookups by name inside
a catch expression.
Change-Id: I8b037add7f423922e2a76b4c0da646ca7e25813a
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4compileddata.cpp')
| -rw-r--r-- | src/qml/compiler/qv4compileddata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4compileddata.cpp b/src/qml/compiler/qv4compileddata.cpp index 636b74e0fc..74f1ab81aa 100644 --- a/src/qml/compiler/qv4compileddata.cpp +++ b/src/qml/compiler/qv4compileddata.cpp @@ -541,7 +541,7 @@ Unit *CompilationUnit::createUnitData(QmlIR::Document *irDocument) function->length = function->nFormals; // Hack to ensure an activation is created. - function->flags |= QV4::CompiledData::Function::HasCatchOrWith | QV4::CompiledData::Function::HasDirectEval; + function->flags |= QV4::CompiledData::Function::HasWith | QV4::CompiledData::Function::HasDirectEval; signalParameterNameTableOffset += function->nFormals * sizeof(quint32); } |
