boda_jsEnv/bodaEnv/env/PermissionStatus.js
2024-02-18 22:02:58 +08:00

52 lines
2.0 KiB
JavaScript

// PermissionStatus对象
bodaEnv.memory.globlProtoObj["PermissionStatus"] = function PermissionStatus() {
let arg = arguments[0];
if (arg != 'bobo') {
bodaEnv.toolsFunc.console_copy('PermissionStatus 实例化对象 --->', bodaEnv.toolsFunc.stringify_bo(arguments, function (k, v) {
if (v == window) {
return 'window';
} else {
return v;
}
}));
}
;
};
bodaEnv.toolsFunc.safeProto(bodaEnv.memory.globlProtoObj["PermissionStatus"], "PermissionStatus");
bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype.__proto__ = bodaEnv.memory.globlProtoObj["EventTarget"].prototype;
bodaEnv.memory.globlProtoObj["PermissionStatus"].__proto__ = bodaEnv.memory.globlProtoObj["EventTarget"];
bodaEnv.toolsFunc.defineProperty(bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "name", {
configurable: true,
enumerable: true,
get: {
name() {
return bodaEnv.toolsFunc.dispatch(this, bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "PermissionStatus", "name_get", arguments);
}
}.name,
set: undefined
});
bodaEnv.toolsFunc.defineProperty(bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "state", {
configurable: true,
enumerable: true,
get: {
state() {
return bodaEnv.toolsFunc.dispatch(this, bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "PermissionStatus", "state_get", arguments);
}
}.state,
set: undefined
});
bodaEnv.toolsFunc.defineProperty(bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "onchange", {
configurable: true,
enumerable: true,
get: {
onchange() {
return bodaEnv.toolsFunc.dispatch(this, bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "PermissionStatus", "onchange_get", arguments);
}
}.onchange,
set: {
onchange() {
return bodaEnv.toolsFunc.dispatch(this, bodaEnv.memory.globlProtoObj["PermissionStatus"].prototype, "PermissionStatus", "onchange_set", arguments);
}
}.onchange
});