2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-09-28 15:16:00 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-09-28 15:16:00 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-09-28 15:16:00 +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:58:39 +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.
|
2011-09-28 15:16:00 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +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.
|
2011-09-28 15:16:00 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-09-28 15:16:00 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-09-28 15:16:00 +02:00
|
|
|
|
|
|
|
|
#include "qmljs_global.h"
|
2013-10-16 14:59:28 +02:00
|
|
|
#include "qmljsconstants.h"
|
2015-03-04 16:46:23 +01:00
|
|
|
#include "parser/qmljsastfwd_p.h"
|
2011-09-28 15:16:00 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QString>
|
|
|
|
|
#include <QList>
|
2011-10-28 12:27:10 +02:00
|
|
|
|
2015-03-04 16:46:23 +01:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QRegExp)
|
|
|
|
|
|
2011-09-28 15:16:00 +02:00
|
|
|
namespace QmlJS {
|
2015-03-04 16:46:23 +01:00
|
|
|
class DiagnosticMessage;
|
|
|
|
|
|
2011-09-28 15:16:00 +02:00
|
|
|
namespace StaticAnalysis {
|
|
|
|
|
|
|
|
|
|
enum Type
|
|
|
|
|
{
|
2011-12-07 15:04:23 +01:00
|
|
|
// Changing the numbers can break user code.
|
|
|
|
|
// When adding a new check, also add it to the documentation, currently
|
|
|
|
|
// in creator-editors.qdoc.
|
2011-09-28 15:16:00 +02:00
|
|
|
UnknownType = 0,
|
|
|
|
|
ErrInvalidEnumValue = 1,
|
|
|
|
|
ErrEnumValueMustBeStringOrNumber = 2,
|
|
|
|
|
ErrNumberValueExpected = 3,
|
|
|
|
|
ErrBooleanValueExpected = 4,
|
|
|
|
|
ErrStringValueExpected = 5,
|
|
|
|
|
ErrInvalidUrl = 6,
|
|
|
|
|
WarnFileOrDirectoryDoesNotExist = 7,
|
|
|
|
|
ErrInvalidColor = 8,
|
|
|
|
|
ErrAnchorLineExpected = 9,
|
|
|
|
|
ErrPropertiesCanOnlyHaveOneBinding = 10,
|
|
|
|
|
ErrIdExpected = 11,
|
|
|
|
|
ErrInvalidId = 14,
|
|
|
|
|
ErrDuplicateId = 15,
|
|
|
|
|
ErrInvalidPropertyName = 16,
|
|
|
|
|
ErrDoesNotHaveMembers = 17,
|
|
|
|
|
ErrInvalidMember = 18,
|
|
|
|
|
WarnAssignmentInCondition = 19,
|
|
|
|
|
WarnCaseWithoutFlowControl = 20,
|
|
|
|
|
WarnEval = 23,
|
|
|
|
|
WarnUnreachable = 28,
|
|
|
|
|
WarnWith = 29,
|
|
|
|
|
WarnComma = 30,
|
2011-10-20 09:45:29 +02:00
|
|
|
WarnUnnecessaryMessageSuppression = 31,
|
2011-09-28 15:16:00 +02:00
|
|
|
WarnAlreadyFormalParameter = 103,
|
|
|
|
|
WarnAlreadyFunction = 104,
|
|
|
|
|
WarnVarUsedBeforeDeclaration = 105,
|
|
|
|
|
WarnAlreadyVar = 106,
|
|
|
|
|
WarnDuplicateDeclaration = 107,
|
|
|
|
|
WarnFunctionUsedBeforeDeclaration = 108,
|
|
|
|
|
WarnBooleanConstructor = 109,
|
|
|
|
|
WarnStringConstructor = 110,
|
|
|
|
|
WarnObjectConstructor = 111,
|
|
|
|
|
WarnArrayConstructor = 112,
|
|
|
|
|
WarnFunctionConstructor = 113,
|
|
|
|
|
HintAnonymousFunctionSpacing = 114,
|
|
|
|
|
WarnBlock = 115,
|
|
|
|
|
WarnVoid = 116,
|
|
|
|
|
WarnConfusingPluses = 117,
|
|
|
|
|
WarnConfusingMinuses = 119,
|
|
|
|
|
HintDeclareVarsInOneLine = 121,
|
|
|
|
|
HintExtraParentheses = 123,
|
|
|
|
|
MaybeWarnEqualityTypeCoercion = 126,
|
|
|
|
|
WarnConfusingExpressionStatement = 127,
|
|
|
|
|
HintDeclarationsShouldBeAtStartOfFunction = 201,
|
|
|
|
|
HintOneStatementPerLine = 202,
|
2012-09-17 14:06:03 +02:00
|
|
|
WarnImperativeCodeNotEditableInVisualDesigner = 203,
|
|
|
|
|
WarnUnsupportedTypeInVisualDesigner = 204,
|
|
|
|
|
WarnReferenceToParentItemNotSupportedByVisualDesigner = 205,
|
|
|
|
|
WarnUndefinedValueForVisualDesigner = 206,
|
|
|
|
|
WarnStatesOnlyInRootItemForVisualDesigner = 207,
|
2014-09-10 09:49:51 +02:00
|
|
|
ErrUnsupportedRootTypeInVisualDesigner = 208,
|
2014-10-14 16:48:39 +02:00
|
|
|
ErrUnsupportedRootTypeInQmlUi = 220,
|
|
|
|
|
ErrUnsupportedTypeInQmlUi = 221,
|
|
|
|
|
ErrFunctionsNotSupportedInQmlUi = 222,
|
|
|
|
|
ErrBlocksNotSupportedInQmlUi = 223,
|
|
|
|
|
ErrBehavioursNotSupportedInQmlUi = 224,
|
2014-10-15 12:32:26 +02:00
|
|
|
ErrStatesOnlyInRootItemInQmlUi = 225,
|
|
|
|
|
ErrReferenceToParentItemNotSupportedInQmlUi = 226,
|
2011-09-28 15:16:00 +02:00
|
|
|
ErrUnknownComponent = 300,
|
|
|
|
|
ErrCouldNotResolvePrototypeOf = 301,
|
|
|
|
|
ErrCouldNotResolvePrototype = 302,
|
|
|
|
|
ErrPrototypeCycle = 303,
|
|
|
|
|
ErrInvalidPropertyType = 304,
|
|
|
|
|
WarnEqualityTypeCoercion = 305,
|
|
|
|
|
WarnExpectedNewWithUppercaseFunction = 306,
|
|
|
|
|
WarnNewWithLowercaseFunction = 307,
|
|
|
|
|
WarnNumberConstructor = 308,
|
|
|
|
|
HintBinaryOperatorSpacing = 309,
|
2011-10-19 14:09:15 +02:00
|
|
|
WarnUnintentinalEmptyBlock = 310,
|
2012-02-07 15:30:33 +01:00
|
|
|
HintPreferNonVarPropertyType = 311,
|
|
|
|
|
ErrMissingRequiredProperty = 312,
|
|
|
|
|
ErrObjectValueExpected = 313,
|
|
|
|
|
ErrArrayValueExpected = 314,
|
|
|
|
|
ErrDifferentValueExpected = 315,
|
|
|
|
|
ErrSmallerNumberValueExpected = 316,
|
|
|
|
|
ErrLargerNumberValueExpected = 317,
|
|
|
|
|
ErrMaximumNumberValueIsExclusive = 318,
|
|
|
|
|
ErrMinimumNumberValueIsExclusive = 319,
|
|
|
|
|
ErrInvalidStringValuePattern = 320,
|
|
|
|
|
ErrLongerStringValueExpected = 321,
|
|
|
|
|
ErrShorterStringValueExpected = 322,
|
2013-11-13 17:20:01 +01:00
|
|
|
ErrInvalidArrayValueLength = 323,
|
|
|
|
|
WarnAboutQtQuick1InsteadQtQuick2 = 324
|
2011-09-28 15:16:00 +02:00
|
|
|
};
|
|
|
|
|
|
2013-04-10 14:38:08 +02:00
|
|
|
class QMLJS_EXPORT PrototypeMessageData {
|
|
|
|
|
public:
|
|
|
|
|
Type type;
|
2013-10-16 14:59:28 +02:00
|
|
|
Severity::Enum severity;
|
2013-04-10 14:38:08 +02:00
|
|
|
QString message;
|
|
|
|
|
int placeholders;
|
|
|
|
|
};
|
|
|
|
|
|
2011-09-28 15:16:00 +02:00
|
|
|
class QMLJS_EXPORT Message
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Message();
|
|
|
|
|
Message(Type type, AST::SourceLocation location,
|
|
|
|
|
const QString &arg1 = QString(),
|
2012-02-07 15:30:33 +01:00
|
|
|
const QString &arg2 = QString(),
|
|
|
|
|
bool appendTypeId = true);
|
2011-09-28 15:16:00 +02:00
|
|
|
|
|
|
|
|
static QList<Type> allMessageTypes();
|
|
|
|
|
|
|
|
|
|
bool isValid() const;
|
|
|
|
|
DiagnosticMessage toDiagnosticMessage() const;
|
|
|
|
|
|
2011-10-19 14:27:40 +02:00
|
|
|
QString suppressionString() const;
|
2011-10-28 12:27:10 +02:00
|
|
|
static QRegExp suppressionPattern();
|
2011-10-19 14:27:40 +02:00
|
|
|
|
2011-09-28 15:16:00 +02:00
|
|
|
AST::SourceLocation location;
|
|
|
|
|
QString message;
|
|
|
|
|
Type type;
|
2013-10-16 14:59:28 +02:00
|
|
|
Severity::Enum severity;
|
2013-04-10 14:38:08 +02:00
|
|
|
|
|
|
|
|
static const PrototypeMessageData prototypeForMessageType(Type type);
|
2011-09-28 15:16:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace StaticAnalysis
|
|
|
|
|
} // namespace QmlJS
|