2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-02-15 13:49:00 +01:00
|
|
|
#include "qmljsmodelmanager.h"
|
2010-11-11 10:05:05 +01:00
|
|
|
#include "qmljstoolsconstants.h"
|
2012-04-13 11:57:34 +02:00
|
|
|
#include "qmljssemanticinfo.h"
|
2012-12-06 17:20:58 +01:00
|
|
|
#include "qmljsbundleprovider.h"
|
2009-09-04 16:51:11 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2015-02-26 13:22:35 +01:00
|
|
|
#include <coreplugin/editormanager/documentmodel.h>
|
2015-03-05 08:22:48 +01:00
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
2011-05-30 12:56:24 +02:00
|
|
|
#include <coreplugin/messagemanager.h>
|
2014-01-23 14:28:31 +01:00
|
|
|
#include <coreplugin/progressmanager/progressmanager.h>
|
2014-09-15 00:12:27 +02:00
|
|
|
#include <cpptools/cppmodelmanager.h>
|
2014-01-23 14:28:31 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2012-12-06 17:20:58 +01:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
2010-06-22 12:54:19 +02:00
|
|
|
#include <projectexplorer/project.h>
|
2014-11-19 17:58:33 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2017-03-27 14:57:24 +02:00
|
|
|
#include <projectexplorer/projectnodes.h>
|
2014-11-19 17:58:33 +01:00
|
|
|
#include <projectexplorer/projecttree.h>
|
2011-06-28 12:01:56 +02:00
|
|
|
#include <projectexplorer/session.h>
|
2012-12-06 17:20:58 +01:00
|
|
|
#include <projectexplorer/target.h>
|
2014-01-23 14:28:31 +01:00
|
|
|
#include <qmljs/qmljsbind.h>
|
|
|
|
|
#include <qmljs/qmljsfindexportedcpptypes.h>
|
|
|
|
|
#include <qmljs/qmljsplugindumper.h>
|
2012-12-06 17:20:58 +01:00
|
|
|
#include <qtsupport/qmldumptool.h>
|
2014-01-23 14:28:31 +01:00
|
|
|
#include <qtsupport/qtkitinformation.h>
|
2012-12-06 17:20:58 +01:00
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
2014-09-26 09:14:03 +02:00
|
|
|
#include <texteditor/textdocument.h>
|
2014-01-23 14:28:31 +01:00
|
|
|
#include <utils/hostosinfo.h>
|
2015-02-04 09:32:46 +01:00
|
|
|
#include <utils/mimetypes/mimedatabase.h>
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QFileInfo>
|
2012-02-09 09:35:03 +01:00
|
|
|
#include <utils/runextensions.h>
|
2013-07-17 11:27:46 +02:00
|
|
|
#include <QTextDocument>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QTextStream>
|
|
|
|
|
#include <QTimer>
|
2012-12-06 17:20:58 +01:00
|
|
|
#include <QRegExp>
|
2017-03-27 14:57:24 +02:00
|
|
|
#include <QSet>
|
|
|
|
|
#include <QString>
|
2014-04-11 23:07:52 +02:00
|
|
|
#include <QLibraryInfo>
|
|
|
|
|
#include <qglobal.h>
|
2009-10-01 16:38:08 +02:00
|
|
|
|
2015-02-27 09:02:42 +02:00
|
|
|
using namespace Utils;
|
2013-08-30 09:22:42 +02:00
|
|
|
using namespace Core;
|
2015-02-27 09:02:42 +02:00
|
|
|
using namespace ProjectExplorer;
|
2010-01-25 14:18:53 +01:00
|
|
|
using namespace QmlJS;
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2015-02-27 09:02:42 +02:00
|
|
|
namespace QmlJSTools {
|
|
|
|
|
namespace Internal {
|
2012-12-06 17:20:58 +01:00
|
|
|
|
2015-02-03 23:48:57 +02:00
|
|
|
ModelManagerInterface::ProjectInfo ModelManager::defaultProjectInfoForProject(
|
2015-02-27 09:02:42 +02:00
|
|
|
Project *project) const
|
2012-12-06 17:20:58 +01:00
|
|
|
{
|
|
|
|
|
ModelManagerInterface::ProjectInfo projectInfo(project);
|
2017-03-27 14:57:24 +02:00
|
|
|
Target *activeTarget = nullptr;
|
2012-12-06 17:20:58 +01:00
|
|
|
if (project) {
|
2017-03-27 14:57:24 +02:00
|
|
|
const QSet<QString> qmlTypeNames = { Constants::QML_MIMETYPE ,Constants::QBS_MIMETYPE,
|
|
|
|
|
Constants::QMLPROJECT_MIMETYPE,
|
|
|
|
|
Constants::QMLTYPES_MIMETYPE,
|
|
|
|
|
Constants::QMLUI_MIMETYPE };
|
|
|
|
|
projectInfo.sourceFiles = project->files(Project::SourceFiles,
|
|
|
|
|
[&qmlTypeNames](const FileNode *fn) {
|
|
|
|
|
return fn->fileType() == FileType::QML
|
|
|
|
|
&& qmlTypeNames.contains(Utils::mimeTypeForFile(fn->filePath().toString(),
|
|
|
|
|
MimeMatchMode::MatchExtension).name());
|
|
|
|
|
});
|
2012-12-06 17:20:58 +01:00
|
|
|
activeTarget = project->activeTarget();
|
|
|
|
|
}
|
2015-02-27 09:02:42 +02:00
|
|
|
Kit *activeKit = activeTarget ? activeTarget->kit() : KitManager::defaultKit();
|
2012-12-06 17:20:58 +01:00
|
|
|
QtSupport::BaseQtVersion *qtVersion = QtSupport::QtKitInformation::qtVersion(activeKit);
|
|
|
|
|
|
|
|
|
|
bool preferDebugDump = false;
|
|
|
|
|
bool setPreferDump = false;
|
|
|
|
|
projectInfo.tryQmlDump = false;
|
|
|
|
|
|
|
|
|
|
if (activeTarget) {
|
2015-02-27 09:02:42 +02:00
|
|
|
if (BuildConfiguration *bc = activeTarget->activeBuildConfiguration()) {
|
|
|
|
|
preferDebugDump = bc->buildType() == BuildConfiguration::Debug;
|
2012-12-06 17:20:58 +01:00
|
|
|
setPreferDump = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!setPreferDump && qtVersion)
|
|
|
|
|
preferDebugDump = (qtVersion->defaultBuildConfig() & QtSupport::BaseQtVersion::DebugBuild);
|
|
|
|
|
if (qtVersion && qtVersion->isValid()) {
|
2015-04-24 15:07:08 +02:00
|
|
|
projectInfo.tryQmlDump = project && qtVersion->type() == QLatin1String(QtSupport::Constants::DESKTOPQT);
|
2014-09-02 14:42:51 +02:00
|
|
|
projectInfo.qtQmlPath = QFileInfo(qtVersion->qmakeProperty("QT_INSTALL_QML")).canonicalFilePath();
|
|
|
|
|
projectInfo.qtImportsPath = QFileInfo(qtVersion->qmakeProperty("QT_INSTALL_IMPORTS")).canonicalFilePath();
|
2012-12-06 17:20:58 +01:00
|
|
|
projectInfo.qtVersionString = qtVersion->qtVersionString();
|
2014-04-11 23:07:52 +02:00
|
|
|
} else {
|
2014-09-02 14:42:51 +02:00
|
|
|
projectInfo.qtQmlPath = QFileInfo(QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath)).canonicalFilePath();
|
|
|
|
|
projectInfo.qtImportsPath = QFileInfo(QLibraryInfo::location(QLibraryInfo::ImportsPath)).canonicalFilePath();
|
2014-04-11 23:07:52 +02:00
|
|
|
projectInfo.qtVersionString = QLatin1String(qVersion());
|
2012-12-06 17:20:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (projectInfo.tryQmlDump) {
|
2017-01-11 14:19:02 +01:00
|
|
|
QtSupport::QmlDumpTool::pathAndEnvironment(activeKit,
|
2012-12-06 17:20:58 +01:00
|
|
|
preferDebugDump, &projectInfo.qmlDumpPath,
|
|
|
|
|
&projectInfo.qmlDumpEnvironment);
|
2013-04-24 12:21:21 +02:00
|
|
|
projectInfo.qmlDumpHasRelocatableFlag = qtVersion->hasQmlDumpWithRelocatableFlag();
|
2012-12-06 17:20:58 +01:00
|
|
|
} else {
|
|
|
|
|
projectInfo.qmlDumpPath.clear();
|
|
|
|
|
projectInfo.qmlDumpEnvironment.clear();
|
2013-04-24 12:21:21 +02:00
|
|
|
projectInfo.qmlDumpHasRelocatableFlag = true;
|
2012-12-06 17:20:58 +01:00
|
|
|
}
|
|
|
|
|
setupProjectInfoQmlBundles(projectInfo);
|
|
|
|
|
return projectInfo;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-27 09:02:42 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
void setupProjectInfoQmlBundles(ModelManagerInterface::ProjectInfo &projectInfo)
|
2012-12-06 17:20:58 +01:00
|
|
|
{
|
2015-02-27 09:02:42 +02:00
|
|
|
Target *activeTarget = 0;
|
2013-11-11 22:20:47 +02:00
|
|
|
if (projectInfo.project)
|
2012-12-06 17:20:58 +01:00
|
|
|
activeTarget = projectInfo.project->activeTarget();
|
2015-02-27 09:02:42 +02:00
|
|
|
Kit *activeKit = activeTarget ? activeTarget->kit() : KitManager::defaultKit();
|
2012-12-06 17:20:58 +01:00
|
|
|
QHash<QString, QString> replacements;
|
|
|
|
|
replacements.insert(QLatin1String("$(QT_INSTALL_IMPORTS)"), projectInfo.qtImportsPath);
|
|
|
|
|
replacements.insert(QLatin1String("$(QT_INSTALL_QML)"), projectInfo.qtQmlPath);
|
|
|
|
|
|
|
|
|
|
QList<IBundleProvider *> bundleProviders =
|
|
|
|
|
ExtensionSystem::PluginManager::getObjects<IBundleProvider>();
|
|
|
|
|
|
|
|
|
|
foreach (IBundleProvider *bp, bundleProviders) {
|
|
|
|
|
if (bp)
|
|
|
|
|
bp->mergeBundlesForKit(activeKit, projectInfo.activeBundle, replacements);
|
|
|
|
|
}
|
|
|
|
|
projectInfo.extendedBundle = projectInfo.activeBundle;
|
|
|
|
|
|
|
|
|
|
if (projectInfo.project) {
|
2015-02-27 09:02:42 +02:00
|
|
|
QSet<Kit *> currentKits;
|
|
|
|
|
foreach (const Target *t, projectInfo.project->targets())
|
2012-12-06 17:20:58 +01:00
|
|
|
if (t->kit())
|
|
|
|
|
currentKits.insert(t->kit());
|
|
|
|
|
currentKits.remove(activeKit);
|
2015-02-27 09:02:42 +02:00
|
|
|
foreach (Kit *kit, currentKits) {
|
2012-12-06 17:20:58 +01:00
|
|
|
foreach (IBundleProvider *bp, bundleProviders)
|
|
|
|
|
if (bp)
|
|
|
|
|
bp->mergeBundlesForKit(kit, projectInfo.extendedBundle, replacements);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-27 09:02:42 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2016-06-20 13:42:26 +02:00
|
|
|
|
|
|
|
|
QHash<QString,Dialect> ModelManager::initLanguageForSuffix() const
|
2012-12-06 12:11:12 +01:00
|
|
|
{
|
2015-02-03 23:48:57 +02:00
|
|
|
QHash<QString,Dialect> res = ModelManagerInterface::languageForSuffix();
|
2011-09-09 10:55:11 +02:00
|
|
|
|
2013-08-30 09:22:42 +02:00
|
|
|
if (ICore::instance()) {
|
2017-03-02 12:07:11 +01:00
|
|
|
MimeType jsSourceTy = Utils::mimeTypeForName(Constants::JS_MIMETYPE);
|
2014-01-22 18:38:45 +01:00
|
|
|
foreach (const QString &suffix, jsSourceTy.suffixes())
|
2014-07-22 19:06:44 +02:00
|
|
|
res[suffix] = Dialect::JavaScript;
|
2017-03-02 12:07:11 +01:00
|
|
|
MimeType qmlSourceTy = Utils::mimeTypeForName(Constants::QML_MIMETYPE);
|
2014-01-22 18:38:45 +01:00
|
|
|
foreach (const QString &suffix, qmlSourceTy.suffixes())
|
2014-07-22 19:06:44 +02:00
|
|
|
res[suffix] = Dialect::Qml;
|
2017-03-02 12:07:11 +01:00
|
|
|
MimeType qbsSourceTy = Utils::mimeTypeForName(Constants::QBS_MIMETYPE);
|
2014-01-22 18:38:45 +01:00
|
|
|
foreach (const QString &suffix, qbsSourceTy.suffixes())
|
2014-07-22 19:06:44 +02:00
|
|
|
res[suffix] = Dialect::QmlQbs;
|
2017-03-02 12:07:11 +01:00
|
|
|
MimeType qmlProjectSourceTy = Utils::mimeTypeForName(Constants::QMLPROJECT_MIMETYPE);
|
2014-01-22 18:38:45 +01:00
|
|
|
foreach (const QString &suffix, qmlProjectSourceTy.suffixes())
|
2014-07-22 19:06:44 +02:00
|
|
|
res[suffix] = Dialect::QmlProject;
|
2017-03-02 12:07:11 +01:00
|
|
|
MimeType qmlUiSourceTy = Utils::mimeTypeForName(Constants::QMLUI_MIMETYPE);
|
2014-10-13 16:46:30 +02:00
|
|
|
foreach (const QString &suffix, qmlUiSourceTy.suffixes())
|
|
|
|
|
res[suffix] = Dialect::QmlQtQuick2Ui;
|
2017-03-02 12:07:11 +01:00
|
|
|
MimeType jsonSourceTy = Utils::mimeTypeForName(Constants::JSON_MIMETYPE);
|
2014-01-22 18:38:45 +01:00
|
|
|
foreach (const QString &suffix, jsonSourceTy.suffixes())
|
2014-07-22 19:06:44 +02:00
|
|
|
res[suffix] = Dialect::Json;
|
2011-09-09 10:55:11 +02:00
|
|
|
}
|
2014-01-22 18:38:45 +01:00
|
|
|
return res;
|
2011-09-09 10:55:11 +02:00
|
|
|
}
|
|
|
|
|
|
2016-06-20 13:42:26 +02:00
|
|
|
QHash<QString,Dialect> ModelManager::languageForSuffix() const
|
|
|
|
|
{
|
|
|
|
|
static QHash<QString,Dialect> res = initLanguageForSuffix();
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-15 13:49:00 +01:00
|
|
|
ModelManager::ModelManager(QObject *parent):
|
2014-01-23 14:28:31 +01:00
|
|
|
ModelManagerInterface(parent)
|
2009-09-04 16:51:11 +02:00
|
|
|
{
|
2012-04-13 11:57:34 +02:00
|
|
|
qRegisterMetaType<QmlJSTools::SemanticInfo>("QmlJSTools::SemanticInfo");
|
2014-01-23 14:28:31 +01:00
|
|
|
loadDefaultQmlTypeDescriptions();
|
2010-03-01 13:01:05 +01:00
|
|
|
}
|
|
|
|
|
|
2011-10-20 11:25:38 +02:00
|
|
|
ModelManager::~ModelManager()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-03 10:13:15 +01:00
|
|
|
void ModelManager::delayedInitialization()
|
|
|
|
|
{
|
2015-02-15 23:13:28 +02:00
|
|
|
CppTools::CppModelManager *cppModelManager = CppTools::CppModelManager::instance();
|
|
|
|
|
// It's important to have a direct connection here so we can prevent
|
|
|
|
|
// the source and AST of the cpp document being cleaned away.
|
2016-06-27 22:25:11 +03:00
|
|
|
connect(cppModelManager, &CppTools::CppModelManager::documentUpdated,
|
|
|
|
|
this, &ModelManagerInterface::maybeQueueCppQmlTypeUpdate, Qt::DirectConnection);
|
2011-08-26 13:31:18 +02:00
|
|
|
|
2015-02-27 09:02:42 +02:00
|
|
|
connect(SessionManager::instance(), &SessionManager::projectRemoved,
|
2015-01-12 14:04:27 +01:00
|
|
|
this, &ModelManager::removeProjectInfo);
|
2015-02-27 09:02:42 +02:00
|
|
|
connect(SessionManager::instance(), &SessionManager::startupProjectChanged,
|
2014-11-19 17:58:33 +01:00
|
|
|
this, &ModelManager::updateDefaultProjectInfo);
|
2014-05-06 09:46:05 +02:00
|
|
|
|
2015-02-03 23:48:57 +02:00
|
|
|
ViewerContext qbsVContext;
|
2014-07-22 19:06:44 +02:00
|
|
|
qbsVContext.language = Dialect::QmlQbs;
|
2014-05-06 09:46:05 +02:00
|
|
|
qbsVContext.maybeAddPath(ICore::resourcePath() + QLatin1String("/qbs"));
|
|
|
|
|
setDefaultVContext(qbsVContext);
|
2010-12-03 10:13:15 +01:00
|
|
|
}
|
|
|
|
|
|
2014-01-23 14:28:31 +01:00
|
|
|
void ModelManager::loadDefaultQmlTypeDescriptions()
|
2010-03-01 13:01:05 +01:00
|
|
|
{
|
2013-08-30 09:22:42 +02:00
|
|
|
if (ICore::instance()) {
|
2014-01-23 14:28:31 +01:00
|
|
|
loadQmlTypeDescriptionsInternal(ICore::resourcePath());
|
|
|
|
|
loadQmlTypeDescriptionsInternal(ICore::userResourcePath());
|
2010-11-10 16:21:05 +01:00
|
|
|
}
|
2010-09-08 10:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2014-01-23 14:28:31 +01:00
|
|
|
void ModelManager::writeMessageInternal(const QString &msg) const
|
2010-09-08 10:11:44 +02:00
|
|
|
{
|
2014-01-23 14:28:31 +01:00
|
|
|
MessageManager::write(msg, MessageManager::Flash);
|
2009-09-04 16:51:11 +02:00
|
|
|
}
|
|
|
|
|
|
2014-01-23 14:28:31 +01:00
|
|
|
ModelManagerInterface::WorkingCopy ModelManager::workingCopyInternal() const
|
2010-09-24 14:05:34 +02:00
|
|
|
{
|
|
|
|
|
WorkingCopy workingCopy;
|
2016-06-13 20:49:41 +02:00
|
|
|
|
|
|
|
|
if (!Core::ICore::instance())
|
|
|
|
|
return workingCopy;
|
|
|
|
|
|
2014-05-07 16:25:04 +02:00
|
|
|
foreach (IDocument *document, DocumentModel::openedDocuments()) {
|
2014-12-21 21:54:30 +02:00
|
|
|
const QString key = document->filePath().toString();
|
2014-09-22 18:43:31 +02:00
|
|
|
if (TextEditor::TextDocument *textDocument = qobject_cast<TextEditor::TextDocument *>(document)) {
|
2013-07-17 11:27:46 +02:00
|
|
|
// TODO the language should be a property on the document, not the editor
|
2017-01-30 14:59:10 +01:00
|
|
|
if (DocumentModel::editorsForDocument(document).first()
|
|
|
|
|
->context().contains(ProjectExplorer::Constants::QMLJS_LANGUAGE_ID)) {
|
|
|
|
|
workingCopy.insert(key, textDocument->plainText(),
|
|
|
|
|
textDocument->document()->revision());
|
|
|
|
|
}
|
2010-09-24 14:05:34 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return workingCopy;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:56:28 +02:00
|
|
|
void ModelManager::updateDefaultProjectInfo()
|
2013-05-21 11:35:15 +02:00
|
|
|
{
|
2015-01-12 14:02:25 +01:00
|
|
|
// needs to be performed in the ui thread
|
2015-02-27 09:02:42 +02:00
|
|
|
Project *currentProject = SessionManager::startupProject();
|
2014-11-24 18:07:28 +01:00
|
|
|
ProjectInfo newDefaultProjectInfo = projectInfo(currentProject,
|
|
|
|
|
defaultProjectInfoForProject(currentProject));
|
2014-06-30 11:56:28 +02:00
|
|
|
setDefaultProject(projectInfo(currentProject,newDefaultProjectInfo), currentProject);
|
2010-03-16 16:34:33 +01:00
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:56:28 +02:00
|
|
|
|
2014-01-23 14:28:31 +01:00
|
|
|
void ModelManager::addTaskInternal(QFuture<void> result, const QString &msg, const char *taskId) const
|
2012-12-06 17:20:58 +01:00
|
|
|
{
|
2014-01-23 14:28:31 +01:00
|
|
|
ProgressManager::addTask(result, msg, taskId);
|
2012-12-06 17:20:58 +01:00
|
|
|
}
|
2015-02-27 09:02:42 +02:00
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlJSTools
|