feat:Android debugging fix issue

This commit is contained in:
pengfei.zhou
2021-03-04 14:49:41 +08:00
committed by osborn
parent 936bd60293
commit 741cad2f3e
7 changed files with 35 additions and 13 deletions

View File

@@ -1327,6 +1327,9 @@ var doric = (function (exports) {
}
const gContexts = new Map;
const gModules = new Map;
function allContexts() {
return gContexts.values();
}
function jsObtainContext(id) {
if (gContexts.has(id)) {
const context = gContexts.get(id);
@@ -1528,6 +1531,7 @@ var doric = (function (exports) {
exports.Context = Context;
exports.__require__ = __require__;
exports.allContexts = allContexts;
exports.jsCallEntityMethod = jsCallEntityMethod;
exports.jsCallReject = jsCallReject;
exports.jsCallResolve = jsCallResolve;

File diff suppressed because one or more lines are too long