[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / lib / Tooling / EmptyNodeIntrospection.inc.in
blob2071c34cbd04dbce4efce8f4949958fb822896af
1 //===- EmptyNodeIntrospection.inc.in --------------------------------------===//
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 //===----------------------------------------------------------------------===//
9 namespace clang {
10 namespace tooling {
11 bool NodeIntrospection::hasIntrospectionSupport() { return false; }
13 NodeLocationAccessors NodeIntrospection::GetLocations(clang::Stmt const *) {
14   return {};
16 NodeLocationAccessors NodeIntrospection::GetLocations(clang::Decl const *) {
17   return {};
19 NodeLocationAccessors NodeIntrospection::GetLocations(
20     clang::CXXCtorInitializer const *) {
21   return {};
23 NodeLocationAccessors NodeIntrospection::GetLocations(
24     clang::NestedNameSpecifierLoc const&) {
25   return {};
27 NodeLocationAccessors NodeIntrospection::GetLocations(
28     clang::TemplateArgumentLoc const&) {
29   return {};
31 NodeLocationAccessors NodeIntrospection::GetLocations(
32     clang::CXXBaseSpecifier const*) {
33   return {};
35 NodeLocationAccessors NodeIntrospection::GetLocations(
36     clang::TypeLoc const&) {
37   return {};
39 NodeLocationAccessors NodeIntrospection::GetLocations(
40     clang::DeclarationNameInfo const&) {
41   return {};
43 NodeLocationAccessors
44 NodeIntrospection::GetLocations(clang::DynTypedNode const &) {
45   return {};
47 } // namespace tooling
48 } // namespace clang