mirror of
https://github.com/ylw00/qxVm.git
synced 2025-04-12 12:06:58 +08:00
67 lines
3.3 KiB
JavaScript
67 lines
3.3 KiB
JavaScript
DOMRect = function DOMRect(createObj_key) {
|
|
if (createObj_key !== lwVm.memory.$createObj_key) {
|
|
throw new TypeError("Illegal constructor");
|
|
}
|
|
lwVm.memory.private_data.set(this, {})
|
|
}; lwVm.safefunction(DOMRect);
|
|
|
|
; (function () {
|
|
const $safe_get_attribute = ['height', 'width', 'x', 'y'];
|
|
const $safe_set_attribute = ['height', 'width', 'x', 'y'];
|
|
const $safe_func_attribute = [];
|
|
|
|
DOMRect.prototype = {
|
|
get height() {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
let result = lwVm.abs(lwVm.memory.private_data.get(this).height, 0);;
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Get', 'DOMRect', 'height', arguments, result);
|
|
return result;
|
|
},
|
|
set height(value) {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Set', 'DOMRect', 'height', arguments);
|
|
lwVm.memory.private_data.get(this).height = value;
|
|
},
|
|
get width() {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
let result = lwVm.abs(lwVm.memory.private_data.get(this).width, 0);;
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Get', 'DOMRect', 'width', arguments, result);
|
|
return result;
|
|
},
|
|
set width(value) {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Set', 'DOMRect', 'width', arguments);
|
|
lwVm.memory.private_data.get(this).width = value;
|
|
},
|
|
get x() {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
let result = lwVm.abs(lwVm.memory.private_data.get(this).x, 0);;
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Get', 'DOMRect', 'x', arguments, result);
|
|
return result;
|
|
},
|
|
set x(value) {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Set', 'DOMRect', 'x', arguments);
|
|
lwVm.memory.private_data.get(this).x = value;
|
|
},
|
|
get y() {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
let result = lwVm.abs(lwVm.memory.private_data.get(this).y, 0);;
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Get', 'DOMRect', 'y', arguments, result);
|
|
return result;
|
|
},
|
|
set y(value) {
|
|
if (!DOMRect.prototype.isPrototypeOf(this)) { throw new TypeError("Illegal constructor"); };
|
|
if (lwVm.config.logOpen=== true) lwVm.logAdd('Set', 'DOMRect', 'y', arguments);
|
|
lwVm.memory.private_data.get(this).y = value;
|
|
},
|
|
}
|
|
lwVm.rename(DOMRect.prototype, "DOMRect");
|
|
lwVm.safeDescriptor_addConstructor(DOMRect);
|
|
lwVm.safe_Objattribute(DOMRect, $safe_get_attribute, $safe_set_attribute, $safe_func_attribute);
|
|
|
|
Object.setPrototypeOf(DOMRect.prototype, DOMRectReadOnly.prototype);
|
|
Object.setPrototypeOf(DOMRect, DOMRectReadOnly);
|
|
})();
|
|
|