aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/lex/rust-lex.h
diff options
context:
space:
mode:
authorOwen Avery <powerboat9.gamer@gmail.com>2023-07-10 16:13:59 -0400
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 18:55:59 +0100
commite99e565e0aa866cdec407f851d651096fb190f7f (patch)
treeaf88fb6f68ad04e5626ac1f596222db5ffa13f21 /gcc/rust/lex/rust-lex.h
parent80c68893f446bf883c67dd78c317b5c0f0f55f4f (diff)
downloadgcc-e99e565e0aa866cdec407f851d651096fb190f7f.zip
gcc-e99e565e0aa866cdec407f851d651096fb190f7f.tar.gz
gcc-e99e565e0aa866cdec407f851d651096fb190f7f.tar.bz2
gccrs: Replace usages of Location with location_t in the lexer, AST, and HIR
gcc/rust/ChangeLog: * ast/rust-ast-builder.h: Replace Location with location_t. * ast/rust-ast.h: Likewise. * ast/rust-expr.h: Likewise. * ast/rust-item.h: Likewise. * ast/rust-macro.h: Likewise. * ast/rust-path.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.h: Likewise. * lex/rust-lex.cc: Likewise. * lex/rust-lex.h: Likewise. Signed-off-by: Owen Avery <powerboat9.gamer@gmail.com>
Diffstat (limited to 'gcc/rust/lex/rust-lex.h')
-rw-r--r--gcc/rust/lex/rust-lex.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/rust/lex/rust-lex.h b/gcc/rust/lex/rust-lex.h
index 1bb35ae..e85b562 100644
--- a/gcc/rust/lex/rust-lex.h
+++ b/gcc/rust/lex/rust-lex.h
@@ -112,7 +112,7 @@ class Lexer
{
private:
// Request new Location for current column in line_table
- Location get_current_location ();
+ location_t get_current_location ();
// Skips the current input char.
void skip_input ();
@@ -138,20 +138,20 @@ private:
void skip_broken_string_input (Codepoint current_char);
- TokenPtr parse_byte_char (Location loc);
- TokenPtr parse_byte_string (Location loc);
- TokenPtr parse_raw_byte_string (Location loc);
- TokenPtr parse_raw_identifier (Location loc);
- TokenPtr parse_string (Location loc);
- TokenPtr maybe_parse_raw_string (Location loc);
- TokenPtr parse_raw_string (Location loc, int initial_hash_count);
- TokenPtr parse_non_decimal_int_literals (Location loc);
- TokenPtr parse_decimal_int_or_float (Location loc);
- TokenPtr parse_char_or_lifetime (Location loc);
- TokenPtr parse_identifier_or_keyword (Location loc);
+ TokenPtr parse_byte_char (location_t loc);
+ TokenPtr parse_byte_string (location_t loc);
+ TokenPtr parse_raw_byte_string (location_t loc);
+ TokenPtr parse_raw_identifier (location_t loc);
+ TokenPtr parse_string (location_t loc);
+ TokenPtr maybe_parse_raw_string (location_t loc);
+ TokenPtr parse_raw_string (location_t loc, int initial_hash_count);
+ TokenPtr parse_non_decimal_int_literals (location_t loc);
+ TokenPtr parse_decimal_int_or_float (location_t loc);
+ TokenPtr parse_char_or_lifetime (location_t loc);
+ TokenPtr parse_identifier_or_keyword (location_t loc);
template <typename IsDigitFunc>
- TokenPtr parse_non_decimal_int_literal (Location loc,
+ TokenPtr parse_non_decimal_int_literal (location_t loc,
IsDigitFunc is_digit_func,
std::string existent_str, int base);