forked from qt-creator/qt-creator
qmljs: fix order in BoundName
constructor and field order should be consistent Change-Id: If698fd66cf67ab54c4be1638f19d758a54e33d5f Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -880,8 +880,8 @@ struct QML_PARSER_EXPORT BoundName
|
||||
};
|
||||
|
||||
QString id;
|
||||
Type typeAnnotationType;
|
||||
TypeAnnotation *typeAnnotation;
|
||||
Type typeAnnotationType;
|
||||
BoundName(const QString &id, TypeAnnotation *typeAnnotation, Type type = Declared)
|
||||
: id(id), typeAnnotation(typeAnnotation), typeAnnotationType(type)
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user