aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmltypeloader.cpp
diff options
context:
space:
mode:
authorJüri Valdmann <juri.valdmann@qt.io>2018-10-05 14:17:05 +0200
committerJani Heikkinen <jani.heikkinen@qt.io>2018-11-01 15:07:01 +0000
commit8b418d9be73dafd25c9c528127274a3573f1a7e1 (patch)
treef5901f8cf6e9a23caadbf5ba6fc4c3329b9823c7 /src/qml/qml/qqmltypeloader.cpp
parentfd3cf7a45ad5abf269aecc63dc164d9bd0f1b407 (diff)
Clone ContextType::Global as ContextType::ScriptImportedByQML
Add new enum value QV4::Compiler::ContextType::ScriptImportedByQML, which behaves exactly the same as ContextType::Global. A follow-up patch will change the behavior slightly. Task-number: QTBUG-69408 Change-Id: I20d27804fd1433f2229704546bcd78a0ac108c01 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/qml/qqmltypeloader.cpp')
-rw-r--r--src/qml/qml/qqmltypeloader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmltypeloader.cpp b/src/qml/qml/qqmltypeloader.cpp
index 0047b20346..89b023c164 100644
--- a/src/qml/qml/qqmltypeloader.cpp
+++ b/src/qml/qml/qqmltypeloader.cpp
@@ -3084,7 +3084,7 @@ void QQmlScriptBlob::dataReceived(const SourceCodeData &data)
QList<QQmlError> errors;
unit = QV4::Script::precompile(
&irUnit.jsModule, &irUnit.jsParserEngine, &irUnit.jsGenerator, urlString(), finalUrlString(),
- source, &errors);
+ source, &errors, QV4::Compiler::ContextType::ScriptImportedByQML);
// No need to addref on unit, it's initial refcount is 1
source.clear();
if (!errors.isEmpty()) {