[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-03 Thread Congcong Cai via cfe-commits
https://github.com/HerrCai0907 closed https://github.com/llvm/llvm-project/pull/118258 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-03 Thread Congcong Cai via cfe-commits
https://github.com/HerrCai0907 updated https://github.com/llvm/llvm-project/pull/118258 >From f9fbb478194a429f1879c176504b8596312b9baf Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Mon, 2 Dec 2024 14:08:47 +0800 Subject: [PATCH 1/2] [ast matcher] add `ExportDecl` in dynamically matchers --

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-03 Thread Aaron Ballman via cfe-commits
https://github.com/AaronBallman approved this pull request. LGTM once the ordering is fixed; no need for a test or release note in this case. https://github.com/llvm/llvm-project/pull/118258 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-03 Thread Aaron Ballman via cfe-commits
@@ -604,6 +604,7 @@ RegistryMaps::RegistryMaps() { REGISTER_MATCHER(usingDecl); REGISTER_MATCHER(usingEnumDecl); REGISTER_MATCHER(usingDirectiveDecl); + REGISTER_MATCHER(exportDecl); AaronBallman wrote: This should be kept in alphabetical order. https:

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-03 Thread Aaron Ballman via cfe-commits
https://github.com/AaronBallman edited https://github.com/llvm/llvm-project/pull/118258 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-03 Thread Congcong Cai via cfe-commits
HerrCai0907 wrote: ping @5chmidti https://github.com/llvm/llvm-project/pull/118258 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-01 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Congcong Cai (HerrCai0907) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/118258.diff 1 Files Affected: - (modified) clang/lib/ASTMatchers/Dynamic/Registry.cpp (+1) ``diff diff --git a/clang/lib/ASTMatchers

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-01 Thread via cfe-commits
graphite-app[bot] wrote: ## Your org has enabled the Graphite merge queue for merging into main Add the label “FP Bundles” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. You must have a Graphite account and log in to Graphite in order to use the

[clang] [ast matcher] add `ExportDecl` in dynamically matchers (PR #118258)

2024-12-01 Thread Congcong Cai via cfe-commits
https://github.com/HerrCai0907 created https://github.com/llvm/llvm-project/pull/118258 None >From f9fbb478194a429f1879c176504b8596312b9baf Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Mon, 2 Dec 2024 14:08:47 +0800 Subject: [PATCH] [ast matcher] add `ExportDecl` in dynamically matchers