Dave Holoway

Results 7 issues of Dave Holoway

The implementation of asynchronous (sync = false) file logging doesn't guarantee the logs are written out in order. The (abbreviated) code looks like this: ```javascript writeLine(text) { ... this.asyncWriteQueue.push(text); this.nextAsyncWrite();...

Investigate possibility of editing code and deploying changes to the running app without requiring a new build.

idea

Currently, watches and evaluations only support simple variables, object instance fields and array elements. Need to add: - [x] Arithmetic, relational and logic operators - [ ] Type casts -...

Currently, the debugger allows an App to be deployed onto any device, regardless of the API level. If an app is deployed to a device with an API lower than...

Investigate JDWP support for conditional breakpoints

The only mandatory requirement for the debugger is the ADB service, present in the `Android SDK Platform Tools`. This could be replaced with an internal version meaning the Android SDK...

The debugger only permits deployment to a single device. If multiple devices are connected, a target device must be chosen in `launch.json`. A nice option would be to allow the...