2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2015-07-08 14:07:13 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2015-07-08 14:07:13 +02:00
|
|
|
|
|
|
|
|
#include <cplusplus/Token.h>
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
namespace ClangCodeModel {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class ActivationSequenceProcessor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ActivationSequenceProcessor(const QString &activationString,
|
|
|
|
|
int positionInDocument,
|
|
|
|
|
bool wantFunctionCall);
|
|
|
|
|
|
|
|
|
|
CPlusPlus::Kind completionKind() const;
|
|
|
|
|
int offset() const;
|
2015-07-23 16:06:48 +02:00
|
|
|
int operatorStartPosition() const; // e.g. points to '.' for "foo.bar<CURSOR>"
|
2015-07-08 14:07:13 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void extractCharactersBeforePosition(const QString &activationString);
|
|
|
|
|
void process();
|
|
|
|
|
void processDot();
|
|
|
|
|
void processComma();
|
|
|
|
|
void processLeftParen();
|
2018-08-20 13:15:13 +02:00
|
|
|
void processLeftBrace();
|
2015-07-08 14:07:13 +02:00
|
|
|
void processColonColon();
|
|
|
|
|
void processArrow();
|
|
|
|
|
void processDotStar();
|
|
|
|
|
void processArrowStar();
|
|
|
|
|
void processDoxyGenComment();
|
|
|
|
|
void processAngleStringLiteral();
|
|
|
|
|
void processStringLiteral();
|
|
|
|
|
void processSlash();
|
|
|
|
|
void processPound();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
CPlusPlus::Kind m_completionKind = CPlusPlus::T_EOF_SYMBOL;
|
|
|
|
|
int m_offset = 0;
|
|
|
|
|
int m_positionInDocument;
|
|
|
|
|
QChar m_char1;
|
|
|
|
|
QChar m_char2;
|
|
|
|
|
QChar m_char3;
|
|
|
|
|
bool m_wantFunctionCall;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangCodeModel
|