commit | 4a1311ba0c46c673fd933375209da38e058982c6 | [log] [tgz] |
---|---|---|
author | Tom Tromey <tromey@adacore.com> | Wed Jun 14 08:31:21 2023 -0600 |
committer | Tom Tromey <tromey@adacore.com> | Mon Jul 10 13:17:30 2023 -0600 |
tree | 4488d1d6e2f3c019bd00f5bcb1ac34d765598b8c | |
parent | 70ef91c5aa0626f2aa1ab117b8bd5da4bc6a115f [diff] |
Fix oversights in frame decorator code The frame decorator "FrameVars" code misses a couple of cases, discovered when working on related DAP changes. First, fetch_frame_locals does not stop when reaching a function boundary. This means it would return locals from any enclosing functions. Second, fetch_frame_args assumes that all arguments are at the outermost scope, but this doesn't seem to be required by gdb.