fix breakpoints don't trigger when hit (#37)

* add errorcode to empty jdwp results

* use an empty line table if the command request fails
This commit is contained in:
Dave Holoway
2018-11-11 15:20:28 +00:00
committed by GitHub
parent 494bb83cbf
commit 8cc31476b3
2 changed files with 13 additions and 1 deletions

View File

@@ -109,7 +109,10 @@ function _JDWP() {
return;
}
this.decoded = {empty:true};
this.decoded = {
empty: true,
errorcode: this.errorcode,
};
}
this.decodereply = function(ths,s) {