Add Rust parser check for end of expression
authorTom Tromey <tom@tromey.com>
Fri, 18 Mar 2022 04:36:12 +0000 (22:36 -0600)
committerTom Tromey <tom@tromey.com>
Mon, 28 Mar 2022 21:02:52 +0000 (15:02 -0600)
I noticed that "print 5," passed in Rust -- the parser wasn't checking
that the entire input was used.  This patch fixes the problem.  This
in turn pointed out another bug in the parser, namely that it didn't
lex the next token after handling a string token.  This is also fixed
here.

gdb/rust-parse.c
gdb/testsuite/gdb.rust/expr.exp

index 4006df7086bb4e9816bba5a8a8136d75a644aa7f..7d7d882872cec6e4898c1847528da840afd03eb3 100644 (file)
@@ -271,7 +271,10 @@ struct rust_parser
   operation_up parse_entry_point ()
   {
     lex ();
-    return parse_expr ();
+    operation_up result = parse_expr ();
+    if (current_token != 0)
+      error (_("Syntax error near '%s'"), pstate->prev_lexptr);
+    return result;
   }
 
   operation_up parse_tuple ();
@@ -2020,6 +2023,7 @@ rust_parser::parse_atom (bool required)
 
     case STRING:
       result = parse_string ();
+      lex ();
       break;
 
     case BYTESTRING:
index 0c4458973380341c6ce80fcee4867431967eaedf..bb0222bed4bc4b80eac7e7d457a921de7979cb99 100644 (file)
@@ -145,3 +145,5 @@ gdb_test "print 0x0 as fn(i64) -> ()" " = \\\(\\*mut fn \\\(i64\\\) -> \\\(\\\)\
 gdb_test "print r#" "No symbol 'r' in current context"
 
 gdb_test "printf \"%d %d\\n\", 23+1, 23-1" "24 22"
+
+gdb_test "print 5," "Syntax error near ','"