File indexing completed on 2024-05-05 04:40:49

0001 /*
0002     SPDX-FileCopyrightText: 2012 Aleix Pol <aleixpol@kde.org>
0003     SPDX-FileCopyrightText: 2012 Milian Wolff <mail@milianw.de>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef QMLJSPARSEJOB_H
0009 #define QMLJSPARSEJOB_H
0010 
0011 #include <language/backgroundparser/parsejob.h>
0012 
0013 class QmlJsParseJob : public KDevelop::ParseJob
0014 {
0015     Q_OBJECT
0016 public:
0017     QmlJsParseJob(const KDevelop::IndexedString& url,
0018                   KDevelop::ILanguageSupport* languageSupport);
0019 
0020 protected:
0021     void run(ThreadWeaver::JobPointer pointer, ThreadWeaver::Thread* thread) override;
0022 };
0023 
0024 #endif // PARSEQMLJSJOB_H