Ensure all DAP requests are keyword-only
authorTom Tromey <tromey@adacore.com>
Fri, 10 Feb 2023 18:59:03 +0000 (11:59 -0700)
committerTom Tromey <tromey@adacore.com>
Fri, 10 Feb 2023 21:04:34 +0000 (14:04 -0700)
commit5036bde964bc1a18282dde536a95aecd0d2c08fb
treee84f6f199dea6bc58d253f568a33bfb9502b0793
parent71bb560755cad815f5159170822cb66df71f916f
Ensure all DAP requests are keyword-only

Python functions implementing DAP requests should not use positional
parameters -- it only makes sense to call them with keyword arguments.
This patch changes the few remaining cases to start with the special
"*" parameter, following this rule.
gdb/python/lib/gdb/dap/breakpoint.py
gdb/python/lib/gdb/dap/evaluate.py