clang 19.0.0git
AttrSubjectMatchRules.h
Go to the documentation of this file.
1//===-- AttrSubjectMatchRules.h - Attribute subject match rules -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_BASIC_ATTRSUBJECTMATCHRULES_H
10#define LLVM_CLANG_BASIC_ATTRSUBJECTMATCHRULES_H
11
12#include "llvm/ADT/DenseMap.h"
13
14namespace clang {
15
16class SourceRange;
17
18namespace attr {
19
20/// A list of all the recognized kinds of attributes.
22#define ATTR_MATCH_RULE(X, Spelling, IsAbstract) X,
23#include "clang/Basic/AttrSubMatchRulesList.inc"
25#define ATTR_MATCH_RULE(X, Spelling, IsAbstract) +1
26#include "clang/Basic/AttrSubMatchRulesList.inc"
27};
28
30
31using ParsedSubjectMatchRuleSet = llvm::DenseMap<int, SourceRange>;
32
33} // end namespace attr
34} // end namespace clang
35
36#endif
const internal::VariadicAllOfMatcher< Attr > attr
Matches attributes.
llvm::DenseMap< int, SourceRange > ParsedSubjectMatchRuleSet
SubjectMatchRule
A list of all the recognized kinds of attributes.
const char * getSubjectMatchRuleSpelling(SubjectMatchRule Rule)
Definition: Attributes.cpp:69
The JSON file list parser is used to communicate input to InstallAPI.