mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-23 01:48:18 +00:00
version 1.4.0 (#144)
* upgrade package-lock.jsons * upgrade debugadapter package * upgrade debugprotocol package * upgrade long package * upgrade unzipper package * upgrade uuid package * upgrade ws package * upgrade xpath package * update dev dependencies * fix eslint config to allow newer language features (async shorthand functions and optional catch parameters) * fix import type declarations * update eslint * remove unsupported stopOnEntry properties * code tidy - fix warnings, separate type imports from value imports, remove unused code * report stack on adb connection error and default host name to 127.0.0.1 * fix imported types in jdwp * lang server tidyups * add a new helper for creating android API library cache file * update the android API cache file to 34 * bump to version 1.4.0
This commit is contained in:
@@ -1,8 +1,13 @@
|
||||
const { Debugger } = require('./debugger');
|
||||
const { DebuggerException, DebuggerFrameInfo, SourceLocation } = require('./debugger-types');
|
||||
const { DebuggerStackFrame } = require('./stack-frame');
|
||||
const { VariableManager } = require('./variable-manager');
|
||||
|
||||
/**
|
||||
* @typedef {import('./debugger').Debugger} Debugger
|
||||
* @typedef {import('./debugger-types').DebuggerException} DebuggerException
|
||||
* @typedef {import('./debugger-types').DebuggerFrameInfo} DebuggerFrameInfo
|
||||
* @typedef {import('./debugger-types').SourceLocation} SourceLocation
|
||||
*/
|
||||
|
||||
// vscode doesn't like thread id reuse (the Android runtime is OK with it)
|
||||
let nextVSCodeThreadId = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user