Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: tools/clang/blink_gc_plugin/Config.cpp

Issue 2696713003: blink_gc_plugin: detect singletons with embedded ScriptWrappables.
Patch Set: non-copying iteration Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/clang/blink_gc_plugin/Config.h ('k') | tools/clang/blink_gc_plugin/DiagnosticsReporter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/Config.cpp
diff --git a/tools/clang/blink_gc_plugin/Config.cpp b/tools/clang/blink_gc_plugin/Config.cpp
index fa00782cc6b79f2c81d15840f1ea24ef36aebca6..1ec3c78d12c48c5496bc6601346116d92a9237fe 100644
--- a/tools/clang/blink_gc_plugin/Config.cpp
+++ b/tools/clang/blink_gc_plugin/Config.cpp
@@ -49,6 +49,18 @@ void Config::UseLegacyNames() {
kIsHeapObjectAliveName = legacy::kIsHeapObjectAliveName;
}
+bool Config::IsAnnotated(clang::Decl* decl, const std::string& anno) {
+ if (!decl->hasAttrs())
+ return false;
+
+ for (const clang::Attr* attr : decl->getAttrs()) {
+ const clang::AnnotateAttr* annotation = dyn_cast<clang::AnnotateAttr>(attr);
+ if (annotation && annotation->getAnnotation() == anno)
+ return true;
+ }
+ return false;
+}
+
bool Config::IsTemplateInstantiation(CXXRecordDecl* record) {
ClassTemplateSpecializationDecl* spec =
dyn_cast<clang::ClassTemplateSpecializationDecl>(record);
« no previous file with comments | « tools/clang/blink_gc_plugin/Config.h ('k') | tools/clang/blink_gc_plugin/DiagnosticsReporter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698