]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ast: Add Path::is_lang_item()
authorArthur Cohen <arthur.cohen@embecosm.com>
Wed, 22 Jan 2025 16:52:26 +0000 (16:52 +0000)
committerCohenArthur <arthur.cohen@embecosm.com>
Tue, 28 Jan 2025 17:35:37 +0000 (17:35 +0000)
gcc/rust/ChangeLog:

* ast/rust-path.h: New function.

gcc/rust/ast/rust-path.h

index c5afc8f883d4c3d9a2f70664657e187581f023d3..0ecd822e50eea70782815f66a6d586c898d4b66c 100644 (file)
@@ -622,6 +622,8 @@ public:
 
   std::string as_string () const override;
 
+  bool is_lang_item () const { return kind == Kind::LangItem; }
+
   // TODO: this seems kinda dodgy
   std::vector<PathExprSegment> &get_segments ()
   {