├── .Rbuildignore ├── .github ├── .gitignore └── README.md ├── .woodpecker └── r-pkg-standard.yaml ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NOTES.md ├── R ├── adapter.R ├── breakpoints.R ├── callbacks.R ├── capabilities.R ├── client.R ├── debug_prompt.R ├── debuggee.R ├── handle.R ├── message.R ├── protocol.R ├── run.R ├── server.R ├── types.R ├── utils.R ├── utils_logging.R ├── utils_types.R └── zzz.R ├── README.md ├── SETUP.md ├── inst └── debugme │ ├── DESCRIPTION │ ├── NAMESPACE │ └── R │ └── hello.R ├── man ├── adapter.Rd ├── applys.Rd ├── breakpoint_verify.Rd ├── dap.Rd ├── dap_types.Rd ├── dapsink.Rd ├── find_source_object.Rd ├── format_variable.Rd ├── has_browser_hook.Rd ├── insert_sync_callback.Rd ├── insert_terminated_callback.Rd ├── locations_from_line.Rd ├── logging.Rd ├── messages.Rd ├── new_connection.Rd ├── package-file-helpers.Rd ├── protocol-handlers.Rd ├── protocol-messages.Rd └── skip_browser_step.Rd └── tests └── fixtures └── containers ├── neovim ├── Containerfile ├── README.md ├── compose.yaml └── init.lua └── r-devel ├── Containerfile ├── Renviron └── Rprofile.site /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^LICENSE\.md$ 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/.github/README.md -------------------------------------------------------------------------------- /.woodpecker/r-pkg-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/.woodpecker/r-pkg-standard.yaml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/NOTES.md -------------------------------------------------------------------------------- /R/adapter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/adapter.R -------------------------------------------------------------------------------- /R/breakpoints.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/breakpoints.R -------------------------------------------------------------------------------- /R/callbacks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/callbacks.R -------------------------------------------------------------------------------- /R/capabilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/capabilities.R -------------------------------------------------------------------------------- /R/client.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/client.R -------------------------------------------------------------------------------- /R/debug_prompt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/debug_prompt.R -------------------------------------------------------------------------------- /R/debuggee.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/debuggee.R -------------------------------------------------------------------------------- /R/handle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/handle.R -------------------------------------------------------------------------------- /R/message.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/message.R -------------------------------------------------------------------------------- /R/protocol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/protocol.R -------------------------------------------------------------------------------- /R/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/run.R -------------------------------------------------------------------------------- /R/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/server.R -------------------------------------------------------------------------------- /R/types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/types.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utils_logging.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/utils_logging.R -------------------------------------------------------------------------------- /R/utils_types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/utils_types.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/SETUP.md -------------------------------------------------------------------------------- /inst/debugme/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/inst/debugme/DESCRIPTION -------------------------------------------------------------------------------- /inst/debugme/NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(hello) 4 | -------------------------------------------------------------------------------- /inst/debugme/R/hello.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/inst/debugme/R/hello.R -------------------------------------------------------------------------------- /man/adapter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/adapter.Rd -------------------------------------------------------------------------------- /man/applys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/applys.Rd -------------------------------------------------------------------------------- /man/breakpoint_verify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/breakpoint_verify.Rd -------------------------------------------------------------------------------- /man/dap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/dap.Rd -------------------------------------------------------------------------------- /man/dap_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/dap_types.Rd -------------------------------------------------------------------------------- /man/dapsink.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/dapsink.Rd -------------------------------------------------------------------------------- /man/find_source_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/find_source_object.Rd -------------------------------------------------------------------------------- /man/format_variable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/format_variable.Rd -------------------------------------------------------------------------------- /man/has_browser_hook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/has_browser_hook.Rd -------------------------------------------------------------------------------- /man/insert_sync_callback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/insert_sync_callback.Rd -------------------------------------------------------------------------------- /man/insert_terminated_callback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/insert_terminated_callback.Rd -------------------------------------------------------------------------------- /man/locations_from_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/locations_from_line.Rd -------------------------------------------------------------------------------- /man/logging.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/logging.Rd -------------------------------------------------------------------------------- /man/messages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/messages.Rd -------------------------------------------------------------------------------- /man/new_connection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/new_connection.Rd -------------------------------------------------------------------------------- /man/package-file-helpers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/package-file-helpers.Rd -------------------------------------------------------------------------------- /man/protocol-handlers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/protocol-handlers.Rd -------------------------------------------------------------------------------- /man/protocol-messages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/protocol-messages.Rd -------------------------------------------------------------------------------- /man/skip_browser_step.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/man/skip_browser_step.Rd -------------------------------------------------------------------------------- /tests/fixtures/containers/neovim/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/tests/fixtures/containers/neovim/Containerfile -------------------------------------------------------------------------------- /tests/fixtures/containers/neovim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/tests/fixtures/containers/neovim/README.md -------------------------------------------------------------------------------- /tests/fixtures/containers/neovim/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/tests/fixtures/containers/neovim/compose.yaml -------------------------------------------------------------------------------- /tests/fixtures/containers/neovim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/tests/fixtures/containers/neovim/init.lua -------------------------------------------------------------------------------- /tests/fixtures/containers/r-devel/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/tests/fixtures/containers/r-devel/Containerfile -------------------------------------------------------------------------------- /tests/fixtures/containers/r-devel/Renviron: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/containers/r-devel/Rprofile.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgkf/debugadapter/HEAD/tests/fixtures/containers/r-devel/Rprofile.site --------------------------------------------------------------------------------