aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/ast/rust-path.h
diff options
context:
space:
mode:
authorOwen Avery <powerboat9.gamer@gmail.com>2023-07-10 15:56:31 -0400
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 18:55:56 +0100
commitdf1da36415bb15919551f1b813443057263fc187 (patch)
tree13b5e3a55d14afcc6a3b24b20a77c6e093c2e761 /gcc/rust/ast/rust-path.h
parentd991a3f15f64d3a16cce0866508bb76d87b9627c (diff)
downloadgcc-df1da36415bb15919551f1b813443057263fc187.zip
gcc-df1da36415bb15919551f1b813443057263fc187.tar.gz
gcc-df1da36415bb15919551f1b813443057263fc187.tar.bz2
gccrs: Replace some more usages of Location with location_t
gcc/rust/ChangeLog: * ast/rust-ast.h: Replace Location with location_t. * ast/rust-expr.h: Likewise. * ast/rust-item.h: Likewise. * ast/rust-macro.h: Likewise. * ast/rust-path.h: Likewise. * ast/rust-pattern.h: Likewise. * ast/rust-stmt.h: Likewise. * ast/rust-type.h: Likewise. * hir/rust-ast-lower-base.h: Likewise. * hir/tree/rust-hir-expr.h: Likewise. * hir/tree/rust-hir-item.h: Likewise. * hir/tree/rust-hir-path.h: Likewise. * hir/tree/rust-hir-pattern.h: Likewise. * hir/tree/rust-hir-stmt.h: Likewise. * hir/tree/rust-hir-type.h: Likewise. * hir/tree/rust-hir.h: Likewise. * lex/rust-token.h: Likewise. * resolve/rust-ast-resolve-pattern.h: Likewise. * typecheck/rust-hir-trait-reference.h: Likewise. * typecheck/rust-tyty-bounds.h: Likewise. * typecheck/rust-tyty-call.h: Likewise. * typecheck/rust-tyty-subst.h: Likewise. * typecheck/rust-tyty-util.h: Likewise. * typecheck/rust-tyty.h: Likewise. Signed-off-by: Owen Avery <powerboat9.gamer@gmail.com>
Diffstat (limited to 'gcc/rust/ast/rust-path.h')
-rw-r--r--gcc/rust/ast/rust-path.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/rust/ast/rust-path.h b/gcc/rust/ast/rust-path.h
index 7f14a3f..d70789c 100644
--- a/gcc/rust/ast/rust-path.h
+++ b/gcc/rust/ast/rust-path.h
@@ -50,7 +50,7 @@ public:
std::string as_string () const { return segment_name; }
- Location get_locus () const { return locus; }
+ location_t get_locus () const { return locus; }
bool is_super_segment () const { return as_string ().compare ("super") == 0; }
bool is_crate_segment () const { return as_string ().compare ("crate") == 0; }
@@ -126,7 +126,7 @@ public:
return type;
}
- Location get_locus () const { return locus; }
+ location_t get_locus () const { return locus; }
Identifier get_identifier () const { return identifier; }
};
@@ -375,7 +375,7 @@ public:
void accept_vis (ASTVisitor &vis) override;
- Location get_locus () const override final { return locus; }
+ location_t get_locus () const override final { return locus; }
Kind get_kind () const override final { return Kind::Const; }
@@ -462,7 +462,7 @@ public:
std::vector<Lifetime> &get_lifetime_args () { return lifetime_args; };
- Location get_locus () { return locus; }
+ location_t get_locus () { return locus; }
};
/* A segment of a path in expression, including an identifier aspect and maybe
@@ -511,7 +511,7 @@ public:
std::string as_string () const;
- Location get_locus () const { return locus; }
+ location_t get_locus () const { return locus; }
// TODO: is this better? Or is a "vis_pattern" better?
GenericArgs &get_generic_args ()
@@ -621,7 +621,7 @@ public:
return convert_to_simple_path (has_opening_scope_resolution);
}
- Location get_locus () const override final { return locus; }
+ location_t get_locus () const override final { return locus; }
void accept_vis (ASTVisitor &vis) override;
@@ -752,7 +752,7 @@ public:
* function). Overridden in derived classes with other segments. */
virtual bool is_ident_only () const { return true; }
- Location get_locus () const { return locus; }
+ location_t get_locus () const { return locus; }
// not pure virtual as class not abstract
virtual void accept_vis (ASTVisitor &vis);
@@ -952,7 +952,7 @@ public:
return return_type;
}
- Location get_locus () const { return locus; }
+ location_t get_locus () const { return locus; }
};
// Segment used in type path with a function argument
@@ -1080,7 +1080,7 @@ public:
// Creates a trait bound with a clone of this type path as its only element.
TraitBound *to_trait_bound (bool in_parens) const override;
- Location get_locus () const override final { return locus; }
+ location_t get_locus () const override final { return locus; }
void accept_vis (ASTVisitor &vis) override;
@@ -1162,7 +1162,7 @@ public:
std::string as_string () const;
- Location get_locus () const { return locus; }
+ location_t get_locus () const { return locus; }
// TODO: is this better? Or is a "vis_pattern" better?
std::unique_ptr<Type> &get_type ()
@@ -1216,7 +1216,7 @@ public:
{}, UNDEF_LOCATION);
}
- Location get_locus () const override final { return locus; }
+ location_t get_locus () const override final { return locus; }
void accept_vis (ASTVisitor &vis) override;
@@ -1366,7 +1366,7 @@ public:
return segments;
}
- Location get_locus () const override final { return locus; }
+ location_t get_locus () const override final { return locus; }
};
} // namespace AST
} // namespace Rust