diff options
Diffstat (limited to 'gcc/rust/ast/rust-ast.h')
-rw-r--r-- | gcc/rust/ast/rust-ast.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/rust/ast/rust-ast.h b/gcc/rust/ast/rust-ast.h index 90a5773..a4da389 100644 --- a/gcc/rust/ast/rust-ast.h +++ b/gcc/rust/ast/rust-ast.h @@ -393,6 +393,11 @@ public: std::string as_string () const; + bool get_has_opening_scope_resolution () const + { + return has_opening_scope_resolution; + } + Location get_locus () const { return locus; } NodeId get_node_id () const { return node_id; } |