clang 20.0.0git
|
#include "clang/ASTMatchers/Dynamic/Registry.h"
Public Member Functions | |
MatcherCompletion ()=default | |
MatcherCompletion (StringRef TypedText, StringRef MatcherDecl, unsigned Specificity) | |
bool | operator== (const MatcherCompletion &Other) const |
Public Attributes | |
std::string | TypedText |
The text to type to select this matcher. | |
std::string | MatcherDecl |
The "declaration" of the matcher, with type information. | |
unsigned | Specificity |
Value corresponding to the "specificity" of the converted matcher. | |
Definition at line 57 of file Registry.h.
|
default |
|
inline |
Definition at line 59 of file Registry.h.
|
inline |
Definition at line 64 of file Registry.h.
References MatcherDecl, clang::Other, and TypedText.
std::string clang::ast_matchers::dynamic::MatcherCompletion::MatcherDecl |
The "declaration" of the matcher, with type information.
Definition at line 72 of file Registry.h.
Referenced by operator==().
unsigned clang::ast_matchers::dynamic::MatcherCompletion::Specificity |
Value corresponding to the "specificity" of the converted matcher.
Zero specificity indicates that this conversion would produce a trivial matcher that will either always or never match. Such matchers are excluded from code completion results.
Definition at line 79 of file Registry.h.
std::string clang::ast_matchers::dynamic::MatcherCompletion::TypedText |
The text to type to select this matcher.
Definition at line 69 of file Registry.h.
Referenced by operator==().