this.XPathResult_get_resultType = function () { // 就是vm的this,走到node层的函数, this就变成了global let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.resultType; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_resultType, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_resultType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_resultType, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_get_numberValue = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.numberValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_numberValue, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_numberValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_numberValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_get_stringValue = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stringValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_stringValue, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_stringValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_stringValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_get_booleanValue = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.booleanValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_booleanValue, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_booleanValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_booleanValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_get_singleNodeValue = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.singleNodeValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_singleNodeValue, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_singleNodeValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_singleNodeValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_get_invalidIteratorState = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.invalidIteratorState; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_invalidIteratorState, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_invalidIteratorState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_invalidIteratorState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_get_snapshotLength = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.snapshotLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_get_snapshotLength, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_get_snapshotLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_get_snapshotLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.XPathResult_iterateNext = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.iterateNext.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_iterateNext, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_iterateNext, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_iterateNext, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XPathResult_snapshotItem = function () { let r = cbb_wf.checkIllegal(this, "XPathResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.snapshotItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathResult_snapshotItem, 返回object'); break case "function": cbb_wf.console.log('[*] XPathResult_snapshotItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathResult_snapshotItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XPathExpression_evaluate = function () { let r = cbb_wf.checkIllegal(this, "XPathExpression"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.evaluate.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathExpression_evaluate, 返回object'); break case "function": cbb_wf.console.log('[*] XPathExpression_evaluate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathExpression_evaluate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XPathEvaluator_createExpression = function () { let r = cbb_wf.checkIllegal(this, "XPathEvaluator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createExpression.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathEvaluator_createExpression, 返回object'); break case "function": cbb_wf.console.log('[*] XPathEvaluator_createExpression, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathEvaluator_createExpression, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XPathEvaluator_createNSResolver = function () { let r = cbb_wf.checkIllegal(this, "XPathEvaluator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createNSResolver.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathEvaluator_createNSResolver, 返回object'); break case "function": cbb_wf.console.log('[*] XPathEvaluator_createNSResolver, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathEvaluator_createNSResolver, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XPathEvaluator_evaluate = function () { let r = cbb_wf.checkIllegal(this, "XPathEvaluator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.evaluate.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XPathEvaluator_evaluate, 返回object'); break case "function": cbb_wf.console.log('[*] XPathEvaluator_evaluate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XPathEvaluator_evaluate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLSerializer_serializeToString = function () { let r = cbb_wf.checkIllegal(this, "XMLSerializer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.serializeToString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] XMLSerializer_serializeToString, 返回object'); break case "function": cbb_wf.console.log('[*] XMLSerializer_serializeToString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLSerializer_serializeToString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequestEventTarget_get_onloadstart = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onloadstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_onloadstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_onloadstart = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onloadstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_onloadstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequestEventTarget_get_onprogress = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onprogress'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_onprogress, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_onprogress = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onprogress', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_onprogress, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequestEventTarget_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onabort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_onabort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onabort', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_onabort, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequestEventTarget_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequestEventTarget_get_onload = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onload'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_onload, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onload', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_onload, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequestEventTarget_get_ontimeout = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ontimeout'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_ontimeout, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_ontimeout = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ontimeout', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_ontimeout, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequestEventTarget_get_onloadend = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onloadend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_get_onloadend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequestEventTarget_set_onloadend = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequestEventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onloadend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequestEventTarget_set_onloadend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequest_get_onreadystatechange = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onreadystatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_onreadystatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_set_onreadystatechange = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onreadystatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_set_onreadystatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequest_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_timeout = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timeout'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_timeout, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_set_timeout = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'timeout', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_set_timeout, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequest_get_withCredentials = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'withCredentials'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_withCredentials, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_set_withCredentials = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'withCredentials', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_set_withCredentials, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequest_get_upload = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upload'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_upload, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_responseURL = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_responseURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_status = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_statusText = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'statusText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_statusText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_responseType = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_responseType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_set_responseType = function (val) { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'responseType', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_set_responseType, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XMLHttpRequest_get_response = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'response'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_response, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_responseText = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_responseText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_get_responseXML = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseXML'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_get_responseXML, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XMLHttpRequest_abort = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequest_getAllResponseHeaders = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_getAllResponseHeaders, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequest_getResponseHeader = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_getResponseHeader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequest_open = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequest_overrideMimeType = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_overrideMimeType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequest_send = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_send, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XMLHttpRequest_setRequestHeader = function () { let r = cbb_wf.checkIllegal(this, "XMLHttpRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XMLHttpRequest_setRequestHeader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStreamDefaultWriter_get_closed = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_get_closed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WritableStreamDefaultWriter_get_desiredSize = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'desiredSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_get_desiredSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WritableStreamDefaultWriter_get_ready = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ready'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_get_ready, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WritableStreamDefaultWriter_abort = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStreamDefaultWriter_close = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStreamDefaultWriter_releaseLock = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_releaseLock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStreamDefaultWriter_write = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultWriter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultWriter_write, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStreamDefaultController_get_signal = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'signal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultController_get_signal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WritableStreamDefaultController_error = function () { let r = cbb_wf.checkIllegal(this, "WritableStreamDefaultController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStreamDefaultController_error, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStream_get_locked = function () { let r = cbb_wf.checkIllegal(this, "WritableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'locked'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStream_get_locked, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WritableStream_abort = function () { let r = cbb_wf.checkIllegal(this, "WritableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStream_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStream_close = function () { let r = cbb_wf.checkIllegal(this, "WritableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStream_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WritableStream_getWriter = function () { let r = cbb_wf.checkIllegal(this, "WritableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WritableStream_getWriter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Worker_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "Worker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worker_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Worker_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "Worker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worker_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Worker_postMessage = function () { let r = cbb_wf.checkIllegal(this, "Worker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worker_postMessage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Worker_terminate = function () { let r = cbb_wf.checkIllegal(this, "Worker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worker_terminate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Worker_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "Worker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worker_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Worker_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "Worker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worker_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WheelEvent_get_deltaX = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deltaX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_deltaX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WheelEvent_get_deltaY = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deltaY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_deltaY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WheelEvent_get_deltaZ = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deltaZ'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_deltaZ, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WheelEvent_get_deltaMode = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deltaMode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_deltaMode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WheelEvent_get_wheelDeltaX = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'wheelDeltaX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_wheelDeltaX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WheelEvent_get_wheelDeltaY = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'wheelDeltaY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_wheelDeltaY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WheelEvent_get_wheelDelta = function () { let r = cbb_wf.checkIllegal(this, "WheelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'wheelDelta'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WheelEvent_get_wheelDelta, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_get_url = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_get_bufferedAmount = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bufferedAmount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_bufferedAmount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_get_onopen = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onopen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_onopen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_set_onopen = function (val) { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onopen', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_set_onopen, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebSocket_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebSocket_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_onclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_set_onclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebSocket_get_extensions = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'extensions'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_extensions, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_protocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebSocket_get_binaryType = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'binaryType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_get_binaryType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocket_set_binaryType = function (val) { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'binaryType', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_set_binaryType, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebSocket_close = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebSocket_send = function () { let r = cbb_wf.checkIllegal(this, "WebSocket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebSocket_send, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLShaderPrecisionFormat_get_rangeMin = function () { let r = cbb_wf.checkIllegal(this, "WebGLShaderPrecisionFormat"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rangeMin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLShaderPrecisionFormat_get_rangeMin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLShaderPrecisionFormat_get_rangeMax = function () { let r = cbb_wf.checkIllegal(this, "WebGLShaderPrecisionFormat"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rangeMax'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLShaderPrecisionFormat_get_rangeMax, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLShaderPrecisionFormat_get_precision = function () { let r = cbb_wf.checkIllegal(this, "WebGLShaderPrecisionFormat"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'precision'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLShaderPrecisionFormat_get_precision, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLRenderingContext_get_canvas = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canvas'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_get_canvas, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLRenderingContext_get_drawingBufferWidth = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'drawingBufferWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_get_drawingBufferWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLRenderingContext_get_drawingBufferHeight = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'drawingBufferHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_get_drawingBufferHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLRenderingContext_activeTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_activeTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_attachShader = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_attachShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bindAttribLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bindAttribLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bindRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bindRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_blendColor = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_blendColor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_blendEquation = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_blendEquation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_blendEquationSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_blendEquationSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_blendFunc = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_blendFunc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_blendFuncSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_blendFuncSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bufferData = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bufferData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bufferSubData = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bufferSubData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_checkFramebufferStatus = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_checkFramebufferStatus, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_compileShader = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_compileShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_compressedTexImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_compressedTexImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_compressedTexSubImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_compressedTexSubImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_copyTexImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_copyTexImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_copyTexSubImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_copyTexSubImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_createBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_createBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_createFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_createFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_createProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_createProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_createRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_createRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_createShader = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_createShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_createTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_createTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_cullFace = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_cullFace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_deleteBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_deleteBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_deleteFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_deleteFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_deleteProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_deleteProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_deleteRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_deleteRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_deleteShader = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_deleteShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_deleteTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_deleteTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_depthFunc = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_depthFunc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_depthMask = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_depthMask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_depthRange = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_depthRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_detachShader = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_detachShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_disable = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_disable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_enable = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_enable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_finish = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_finish, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_flush = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_flush, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_framebufferRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_framebufferRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_framebufferTexture2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_framebufferTexture2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_frontFace = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_frontFace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_generateMipmap = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_generateMipmap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getActiveAttrib = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getActiveAttrib, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getActiveUniform = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getActiveUniform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getAttachedShaders = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getAttachedShaders, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getAttribLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getAttribLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getBufferParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getBufferParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getContextAttributes = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getContextAttributes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getError = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getError, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getExtension = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getExtension, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getFramebufferAttachmentParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getFramebufferAttachmentParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getProgramInfoLog = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getProgramInfoLog, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getProgramParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getProgramParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getRenderbufferParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getRenderbufferParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getShaderInfoLog = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getShaderInfoLog, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getShaderParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getShaderParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getShaderPrecisionFormat = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getShaderPrecisionFormat, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getShaderSource = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getShaderSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getSupportedExtensions = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getSupportedExtensions, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getTexParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getTexParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getUniform = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getUniform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getUniformLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getUniformLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getVertexAttrib = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getVertexAttrib, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_getVertexAttribOffset = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_getVertexAttribOffset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_hint = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_hint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isContextLost = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isContextLost, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isEnabled = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isEnabled, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isShader = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_isTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_isTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_lineWidth = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_lineWidth, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_linkProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_linkProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_pixelStorei = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_pixelStorei, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_polygonOffset = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_polygonOffset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_readPixels = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_readPixels, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_renderbufferStorage = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_renderbufferStorage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_sampleCoverage = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_sampleCoverage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_shaderSource = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_shaderSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_stencilFunc = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_stencilFunc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_stencilFuncSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_stencilFuncSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_stencilMask = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_stencilMask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_stencilMaskSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_stencilMaskSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_stencilOp = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_stencilOp, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_stencilOpSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_stencilOpSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_texImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_texImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_texParameterf = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_texParameterf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_texParameteri = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_texParameteri, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_texSubImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_texSubImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_useProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_useProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_validateProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_validateProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bindBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bindBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bindFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bindFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_bindTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_bindTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_clear = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_clearColor = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_clearColor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_clearDepth = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_clearDepth, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_clearStencil = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_clearStencil, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_colorMask = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_colorMask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_disableVertexAttribArray = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_disableVertexAttribArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_drawArrays = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_drawArrays, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_drawElements = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_drawElements, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_enableVertexAttribArray = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_enableVertexAttribArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_scissor = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_scissor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform1f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform1f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform1fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform1fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform1i = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform1i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform1iv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform1iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform2f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform2f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform2i = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform2i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform2iv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform2iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform3f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform3f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform3i = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform3i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform3iv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform3iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform4f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform4f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform4i = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform4i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniform4iv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniform4iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniformMatrix2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniformMatrix2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniformMatrix3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniformMatrix3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_uniformMatrix4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_uniformMatrix4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib1f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib1f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib1fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib1fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib2f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib2f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib3f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib3f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib4f = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib4f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttrib4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttrib4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_vertexAttribPointer = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_vertexAttribPointer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_viewport = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_viewport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLRenderingContext_get_drawingBufferColorSpace = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'drawingBufferColorSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_get_drawingBufferColorSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLRenderingContext_set_drawingBufferColorSpace = function (val) { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'drawingBufferColorSpace', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_set_drawingBufferColorSpace, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebGLRenderingContext_get_unpackColorSpace = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unpackColorSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_get_unpackColorSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLRenderingContext_set_unpackColorSpace = function (val) { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'unpackColorSpace', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_set_unpackColorSpace, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebGLRenderingContext_makeXRCompatible = function () { let r = cbb_wf.checkIllegal(this, "WebGLRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLRenderingContext_makeXRCompatible, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGLContextEvent_get_statusMessage = function () { let r = cbb_wf.checkIllegal(this, "WebGLContextEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'statusMessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLContextEvent_get_statusMessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLActiveInfo_get_size = function () { let r = cbb_wf.checkIllegal(this, "WebGLActiveInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLActiveInfo_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLActiveInfo_get_type = function () { let r = cbb_wf.checkIllegal(this, "WebGLActiveInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLActiveInfo_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGLActiveInfo_get_name = function () { let r = cbb_wf.checkIllegal(this, "WebGLActiveInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGLActiveInfo_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGL2RenderingContext_get_canvas = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canvas'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_get_canvas, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGL2RenderingContext_get_drawingBufferWidth = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'drawingBufferWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_get_drawingBufferWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGL2RenderingContext_get_drawingBufferHeight = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'drawingBufferHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_get_drawingBufferHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGL2RenderingContext_activeTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_activeTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_attachShader = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_attachShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_beginQuery = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_beginQuery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_beginTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_beginTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindAttribLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindAttribLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindBufferBase = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindBufferBase, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindBufferRange = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindBufferRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindSampler = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindSampler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindVertexArray = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindVertexArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_blendColor = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_blendColor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_blendEquation = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_blendEquation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_blendEquationSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_blendEquationSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_blendFunc = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_blendFunc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_blendFuncSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_blendFuncSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_blitFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_blitFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bufferData = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bufferData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bufferSubData = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bufferSubData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_checkFramebufferStatus = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_checkFramebufferStatus, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clientWaitSync = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clientWaitSync, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_compileShader = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_compileShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_compressedTexImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_compressedTexImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_compressedTexImage3D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_compressedTexImage3D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_compressedTexSubImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_compressedTexSubImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_compressedTexSubImage3D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_compressedTexSubImage3D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_copyBufferSubData = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_copyBufferSubData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_copyTexImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_copyTexImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_copyTexSubImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_copyTexSubImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_copyTexSubImage3D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_copyTexSubImage3D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createQuery = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createQuery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createSampler = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createSampler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createShader = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_createVertexArray = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_createVertexArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_cullFace = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_cullFace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteQuery = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteQuery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteSampler = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteSampler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteShader = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteSync = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteSync, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_deleteVertexArray = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_deleteVertexArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_depthFunc = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_depthFunc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_depthMask = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_depthMask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_depthRange = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_depthRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_detachShader = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_detachShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_disable = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_disable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_drawArraysInstanced = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_drawArraysInstanced, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_drawElementsInstanced = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_drawElementsInstanced, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_drawRangeElements = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_drawRangeElements, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_enable = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_enable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_endQuery = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_endQuery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_endTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_endTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_fenceSync = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_fenceSync, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_finish = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_finish, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_flush = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_flush, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_framebufferRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_framebufferRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_framebufferTexture2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_framebufferTexture2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_framebufferTextureLayer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_framebufferTextureLayer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_frontFace = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_frontFace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_generateMipmap = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_generateMipmap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getActiveAttrib = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getActiveAttrib, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getActiveUniform = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getActiveUniform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getActiveUniformBlockName = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getActiveUniformBlockName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getActiveUniformBlockParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getActiveUniformBlockParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getActiveUniforms = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getActiveUniforms, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getAttachedShaders = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getAttachedShaders, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getAttribLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getAttribLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getBufferParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getBufferParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getBufferSubData = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getBufferSubData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getContextAttributes = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getContextAttributes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getError = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getError, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getExtension = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getExtension, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getFragDataLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getFragDataLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getFramebufferAttachmentParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getFramebufferAttachmentParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getIndexedParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getIndexedParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getInternalformatParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getInternalformatParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getProgramInfoLog = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getProgramInfoLog, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getProgramParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getProgramParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getQuery = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getQuery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getQueryParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getQueryParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getRenderbufferParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getRenderbufferParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getSamplerParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getSamplerParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getShaderInfoLog = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getShaderInfoLog, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getShaderParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getShaderParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getShaderPrecisionFormat = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getShaderPrecisionFormat, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getShaderSource = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getShaderSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getSupportedExtensions = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getSupportedExtensions, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getSyncParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getSyncParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getTexParameter = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getTexParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getTransformFeedbackVarying = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getTransformFeedbackVarying, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getUniform = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getUniform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getUniformBlockIndex = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getUniformBlockIndex, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getUniformIndices = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getUniformIndices, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getUniformLocation = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getUniformLocation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getVertexAttrib = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getVertexAttrib, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_getVertexAttribOffset = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_getVertexAttribOffset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_hint = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_hint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_invalidateFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_invalidateFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_invalidateSubFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_invalidateSubFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isContextLost = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isContextLost, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isEnabled = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isEnabled, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isQuery = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isQuery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isRenderbuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isRenderbuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isSampler = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isSampler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isShader = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isShader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isSync = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isSync, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_isVertexArray = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_isVertexArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_lineWidth = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_lineWidth, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_linkProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_linkProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_pauseTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_pauseTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_pixelStorei = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_pixelStorei, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_polygonOffset = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_polygonOffset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_readBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_readBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_readPixels = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_readPixels, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_renderbufferStorage = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_renderbufferStorage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_renderbufferStorageMultisample = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_renderbufferStorageMultisample, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_resumeTransformFeedback = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_resumeTransformFeedback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_sampleCoverage = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_sampleCoverage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_samplerParameterf = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_samplerParameterf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_samplerParameteri = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_samplerParameteri, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_shaderSource = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_shaderSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_stencilFunc = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_stencilFunc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_stencilFuncSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_stencilFuncSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_stencilMask = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_stencilMask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_stencilMaskSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_stencilMaskSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_stencilOp = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_stencilOp, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_stencilOpSeparate = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_stencilOpSeparate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texImage3D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texImage3D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texParameterf = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texParameterf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texParameteri = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texParameteri, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texStorage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texStorage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texStorage3D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texStorage3D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texSubImage2D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texSubImage2D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_texSubImage3D = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_texSubImage3D, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_transformFeedbackVaryings = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_transformFeedbackVaryings, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform1ui = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform1ui, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform2ui = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform2ui, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform3ui = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform3ui, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform4ui = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform4ui, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformBlockBinding = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformBlockBinding, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_useProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_useProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_validateProgram = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_validateProgram, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribDivisor = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribDivisor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribI4i = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribI4i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribI4ui = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribI4ui, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribIPointer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribIPointer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_waitSync = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_waitSync, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindBuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindFramebuffer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindFramebuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_bindTexture = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_bindTexture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clear = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearBufferfi = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearBufferfi, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearBufferfv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearBufferfv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearBufferiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearBufferiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearBufferuiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearBufferuiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearColor = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearColor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearDepth = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearDepth, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_clearStencil = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_clearStencil, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_colorMask = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_colorMask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_disableVertexAttribArray = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_disableVertexAttribArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_drawArrays = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_drawArrays, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_drawBuffers = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_drawBuffers, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_drawElements = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_drawElements, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_enableVertexAttribArray = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_enableVertexAttribArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_scissor = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_scissor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform1f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform1f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform1fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform1fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform1i = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform1i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform1iv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform1iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform1uiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform1uiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform2f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform2f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform2i = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform2i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform2iv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform2iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform2uiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform2uiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform3f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform3f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform3i = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform3i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform3iv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform3iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform3uiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform3uiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform4f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform4f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform4i = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform4i, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform4iv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform4iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniform4uiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniform4uiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix2x3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix2x3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix2x4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix2x4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix3x2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix3x2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix3x4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix3x4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix4x2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix4x2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_uniformMatrix4x3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_uniformMatrix4x3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib1f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib1f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib1fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib1fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib2f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib2f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib2fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib2fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib3f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib3f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib3fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib3fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib4f = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib4f, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttrib4fv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttrib4fv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribI4iv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribI4iv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribI4uiv = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribI4uiv, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_vertexAttribPointer = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_vertexAttribPointer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_viewport = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_viewport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebGL2RenderingContext_get_drawingBufferColorSpace = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'drawingBufferColorSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_get_drawingBufferColorSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGL2RenderingContext_set_drawingBufferColorSpace = function (val) { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'drawingBufferColorSpace', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_set_drawingBufferColorSpace, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebGL2RenderingContext_get_unpackColorSpace = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unpackColorSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_get_unpackColorSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebGL2RenderingContext_set_unpackColorSpace = function (val) { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'unpackColorSpace', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_set_unpackColorSpace, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebGL2RenderingContext_makeXRCompatible = function () { let r = cbb_wf.checkIllegal(this, "WebGL2RenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebGL2RenderingContext_makeXRCompatible, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WaveShaperNode_get_curve = function () { let r = cbb_wf.checkIllegal(this, "WaveShaperNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'curve'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WaveShaperNode_get_curve, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WaveShaperNode_set_curve = function (val) { let r = cbb_wf.checkIllegal(this, "WaveShaperNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'curve', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WaveShaperNode_set_curve, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WaveShaperNode_get_oversample = function () { let r = cbb_wf.checkIllegal(this, "WaveShaperNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oversample'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WaveShaperNode_get_oversample, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WaveShaperNode_set_oversample = function (val) { let r = cbb_wf.checkIllegal(this, "WaveShaperNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oversample', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WaveShaperNode_set_oversample, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VisualViewport_get_offsetLeft = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offsetLeft'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_offsetLeft, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_offsetTop = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offsetTop'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_offsetTop, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_pageLeft = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pageLeft'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_pageLeft, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_pageTop = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pageTop'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_pageTop, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_width = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_height = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_scale = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'scale'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_scale, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onresize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_onresize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onresize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_set_onresize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VisualViewport_get_onscroll = function () { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onscroll'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_get_onscroll, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VisualViewport_set_onscroll = function (val) { let r = cbb_wf.checkIllegal(this, "VisualViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onscroll', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VisualViewport_set_onscroll, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ValidityState_get_valueMissing = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.valueMissing; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_valueMissing, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_valueMissing, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_valueMissing, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_typeMismatch = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.typeMismatch; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_typeMismatch, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_typeMismatch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_typeMismatch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_patternMismatch = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.patternMismatch; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_patternMismatch, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_patternMismatch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_patternMismatch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_tooLong = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tooLong; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_tooLong, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_tooLong, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_tooLong, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_tooShort = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tooShort; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_tooShort, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_tooShort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_tooShort, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_rangeUnderflow = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rangeUnderflow; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_rangeUnderflow, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_rangeUnderflow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_rangeUnderflow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_rangeOverflow = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rangeOverflow; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_rangeOverflow, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_rangeOverflow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_rangeOverflow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_stepMismatch = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stepMismatch; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_stepMismatch, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_stepMismatch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_stepMismatch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_badInput = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.badInput; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_badInput, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_badInput, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_badInput, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_customError = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.customError; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_customError, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_customError, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_customError, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ValidityState_get_valid = function () { let r = cbb_wf.checkIllegal(this, "ValidityState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.valid; switch (typeof result) { case "object": cbb_wf.console.log('[*] ValidityState_get_valid, 返回object'); break case "function": cbb_wf.console.log('[*] ValidityState_get_valid, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ValidityState_get_valid, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.VTTCue_get_vertical = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vertical'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_vertical, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_vertical = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'vertical', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_vertical, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_get_snapToLines = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'snapToLines'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_snapToLines, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_snapToLines = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'snapToLines', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_snapToLines, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_get_line = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'line'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_line, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_line = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'line', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_line, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_get_position = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'position'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_position, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_position = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'position', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_position, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_get_size = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_size = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_get_align = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'align'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_align, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'align', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_align, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_get_text = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'text'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_get_text, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VTTCue_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'text', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_set_text, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VTTCue_getCueAsHTML = function () { let r = cbb_wf.checkIllegal(this, "VTTCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VTTCue_getCueAsHTML, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.UserActivation_get_hasBeenActive = function () { let r = cbb_wf.checkIllegal(this, "UserActivation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hasBeenActive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UserActivation_get_hasBeenActive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.UserActivation_get_isActive = function () { let r = cbb_wf.checkIllegal(this, "UserActivation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isActive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UserActivation_get_isActive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLSearchParams_append = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_delete = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_get = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_getAll = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_getAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_has = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_set = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_set, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_sort = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_sort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_toString = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_entries = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_forEach = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_keys = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLSearchParams_values = function () { let r = cbb_wf.checkIllegal(this, "URLSearchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLSearchParams_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URL_get_origin = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'origin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_origin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_protocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_protocol = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'protocol', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_protocol, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_username = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'username'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_username, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_username = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'username', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_username, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_password = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'password'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_password, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_password = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'password', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_password, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_host = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'host'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_host, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_host = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'host', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_host, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_hostname = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hostname'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_hostname, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_hostname = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'hostname', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_hostname, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_port = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_port = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'port', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_port, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_pathname = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pathname'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_pathname, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_pathname = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'pathname', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_pathname, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_search = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'search'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_search, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_search = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'search', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_search, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_searchParams = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'searchParams'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_searchParams, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_get_hash = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hash'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_hash, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_hash = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'hash', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_hash, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_get_href = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'href'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_get_href, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URL_set_href = function (val) { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'href', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_set_href, this =>", toString.call(this), ", val => ", '' + val, info); } } this.URL_toJSON = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URL_toString = function () { let r = cbb_wf.checkIllegal(this, "URL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URL_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.UIEvent_get_view = function () { let r = cbb_wf.checkIllegal(this, "UIEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'view'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UIEvent_get_view, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.UIEvent_get_detail = function () { let r = cbb_wf.checkIllegal(this, "UIEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detail'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UIEvent_get_detail, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.UIEvent_get_sourceCapabilities = function () { let r = cbb_wf.checkIllegal(this, "UIEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sourceCapabilities'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UIEvent_get_sourceCapabilities, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.UIEvent_get_which = function () { let r = cbb_wf.checkIllegal(this, "UIEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'which'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UIEvent_get_which, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.UIEvent_initUIEvent = function () { let r = cbb_wf.checkIllegal(this, "UIEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "UIEvent_initUIEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_get_root = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.root; switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_get_root, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_get_root, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_get_root, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TreeWalker_get_whatToShow = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.whatToShow; switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_get_whatToShow, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_get_whatToShow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_get_whatToShow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TreeWalker_get_filter = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.filter; switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_get_filter, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_get_filter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_get_filter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TreeWalker_get_currentNode = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_get_currentNode, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_get_currentNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_get_currentNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TreeWalker_set_currentNode = function (val) { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] TreeWalker_set_currentNode, set object'); break case "function": cbb_wf.console.log('[*] TreeWalker_set_currentNode, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.currentNode = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_set_currentNode, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.TreeWalker_firstChild = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.firstChild.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_firstChild, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_firstChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_firstChild, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_lastChild = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lastChild.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_lastChild, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_lastChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_lastChild, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_nextNode = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_nextNode, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_nextNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_nextNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_nextSibling = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextSibling.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_nextSibling, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_nextSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_nextSibling, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_parentNode = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_parentNode, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_parentNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_parentNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_previousNode = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_previousNode, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_previousNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_previousNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TreeWalker_previousSibling = function () { let r = cbb_wf.checkIllegal(this, "TreeWalker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousSibling.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] TreeWalker_previousSibling, 返回object'); break case "function": cbb_wf.console.log('[*] TreeWalker_previousSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TreeWalker_previousSibling, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TransitionEvent_get_propertyName = function () { let r = cbb_wf.checkIllegal(this, "TransitionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'propertyName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TransitionEvent_get_propertyName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TransitionEvent_get_elapsedTime = function () { let r = cbb_wf.checkIllegal(this, "TransitionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'elapsedTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TransitionEvent_get_elapsedTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TransitionEvent_get_pseudoElement = function () { let r = cbb_wf.checkIllegal(this, "TransitionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pseudoElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TransitionEvent_get_pseudoElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TransformStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "TransformStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TransformStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TransformStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "TransformStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TransformStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TrackEvent_get_track = function () { let r = cbb_wf.checkIllegal(this, "TrackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrackEvent_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchList_get_length = function () { let r = cbb_wf.checkIllegal(this, "TouchList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchList_item = function () { let r = cbb_wf.checkIllegal(this, "TouchList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TouchEvent_get_touches = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'touches'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_touches, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchEvent_get_targetTouches = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'targetTouches'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_targetTouches, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchEvent_get_changedTouches = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'changedTouches'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_changedTouches, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchEvent_get_altKey = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'altKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_altKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchEvent_get_metaKey = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'metaKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_metaKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchEvent_get_ctrlKey = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ctrlKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_ctrlKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TouchEvent_get_shiftKey = function () { let r = cbb_wf.checkIllegal(this, "TouchEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shiftKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TouchEvent_get_shiftKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_identifier = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'identifier'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_identifier, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_target = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'target'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_target, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_screenX = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'screenX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_screenX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_screenY = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'screenY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_screenY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_clientX = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clientX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_clientX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_clientY = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clientY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_clientY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_pageX = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pageX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_pageX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_pageY = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pageY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_pageY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_radiusX = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'radiusX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_radiusX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_radiusY = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'radiusY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_radiusY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_rotationAngle = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rotationAngle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_rotationAngle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Touch_get_force = function () { let r = cbb_wf.checkIllegal(this, "Touch"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'force'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Touch_get_force, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TimeRanges_get_length = function () { let r = cbb_wf.checkIllegal(this, "TimeRanges"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TimeRanges_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TimeRanges_end = function () { let r = cbb_wf.checkIllegal(this, "TimeRanges"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TimeRanges_end, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TimeRanges_start = function () { let r = cbb_wf.checkIllegal(this, "TimeRanges"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TimeRanges_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextTrackList_get_length = function () { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackList_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackList_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackList_get_onaddtrack = function () { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaddtrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_get_onaddtrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackList_set_onaddtrack = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaddtrack', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_set_onaddtrack, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackList_get_onremovetrack = function () { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onremovetrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_get_onremovetrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackList_set_onremovetrack = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onremovetrack', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_set_onremovetrack, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackList_getTrackById = function () { let r = cbb_wf.checkIllegal(this, "TextTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackList_getTrackById, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextTrackCueList_get_length = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCueList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCueList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCueList_getCueById = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCueList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCueList_getCueById, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextTrackCue_get_track = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_get_id = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_set_id = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'id', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_set_id, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackCue_get_startTime = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'startTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_startTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_set_startTime = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'startTime', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_set_startTime, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackCue_get_endTime = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'endTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_endTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_set_endTime = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'endTime', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_set_endTime, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackCue_get_pauseOnExit = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pauseOnExit'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_pauseOnExit, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_set_pauseOnExit = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'pauseOnExit', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_set_pauseOnExit, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackCue_get_onenter = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onenter'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_onenter, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_set_onenter = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onenter', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_set_onenter, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrackCue_get_onexit = function () { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onexit'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_get_onexit, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrackCue_set_onexit = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrackCue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onexit', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrackCue_set_onexit, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrack_get_kind = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'kind'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_kind, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_get_label = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'label'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_label, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_get_language = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'language'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_language, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_get_id = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_get_mode = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_mode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_set_mode = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'mode', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_set_mode, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrack_get_cues = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cues'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_cues, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_get_activeCues = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'activeCues'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_activeCues, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_get_oncuechange = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncuechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_get_oncuechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextTrack_set_oncuechange = function (val) { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncuechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_set_oncuechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TextTrack_addCue = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_addCue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextTrack_removeCue = function () { let r = cbb_wf.checkIllegal(this, "TextTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextTrack_removeCue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextMetrics_get_width = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextMetrics_get_actualBoundingBoxLeft = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.actualBoundingBoxLeft; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxLeft, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxLeft, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_actualBoundingBoxLeft, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextMetrics_get_actualBoundingBoxRight = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.actualBoundingBoxRight; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxRight, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxRight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_actualBoundingBoxRight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextMetrics_get_fontBoundingBoxAscent = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fontBoundingBoxAscent; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_fontBoundingBoxAscent, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_fontBoundingBoxAscent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_fontBoundingBoxAscent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextMetrics_get_fontBoundingBoxDescent = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fontBoundingBoxDescent; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_fontBoundingBoxDescent, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_fontBoundingBoxDescent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_fontBoundingBoxDescent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextMetrics_get_actualBoundingBoxAscent = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.actualBoundingBoxAscent; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxAscent, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxAscent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_actualBoundingBoxAscent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextMetrics_get_actualBoundingBoxDescent = function () { let r = cbb_wf.checkIllegal(this, "TextMetrics"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.actualBoundingBoxDescent; switch (typeof result) { case "object": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxDescent, 返回object'); break case "function": cbb_wf.console.log('[*] TextMetrics_get_actualBoundingBoxDescent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextMetrics_get_actualBoundingBoxDescent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.TextEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "TextEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextEvent_initTextEvent = function () { let r = cbb_wf.checkIllegal(this, "TextEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEvent_initTextEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextEncoderStream_get_encoding = function () { let r = cbb_wf.checkIllegal(this, "TextEncoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encoding'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEncoderStream_get_encoding, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextEncoderStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "TextEncoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEncoderStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextEncoderStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "TextEncoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEncoderStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextEncoder_get_encoding = function () { let r = cbb_wf.checkIllegal(this, "TextEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encoding'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEncoder_get_encoding, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextEncoder_encode = function () { let r = cbb_wf.checkIllegal(this, "TextEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEncoder_encode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextEncoder_encodeInto = function () { let r = cbb_wf.checkIllegal(this, "TextEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextEncoder_encodeInto, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextDecoderStream_get_encoding = function () { let r = cbb_wf.checkIllegal(this, "TextDecoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encoding'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoderStream_get_encoding, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoderStream_get_fatal = function () { let r = cbb_wf.checkIllegal(this, "TextDecoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fatal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoderStream_get_fatal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoderStream_get_ignoreBOM = function () { let r = cbb_wf.checkIllegal(this, "TextDecoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ignoreBOM'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoderStream_get_ignoreBOM, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoderStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "TextDecoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoderStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoderStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "TextDecoderStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoderStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoder_get_encoding = function () { let r = cbb_wf.checkIllegal(this, "TextDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encoding'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoder_get_encoding, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoder_get_fatal = function () { let r = cbb_wf.checkIllegal(this, "TextDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fatal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoder_get_fatal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoder_get_ignoreBOM = function () { let r = cbb_wf.checkIllegal(this, "TextDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ignoreBOM'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoder_get_ignoreBOM, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextDecoder_decode = function () { let r = cbb_wf.checkIllegal(this, "TextDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TextDecoder_decode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Text_get_wholeText = function () { let r = cbb_wf.checkIllegal(this, "Text"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.wholeText; switch (typeof result) { case "object": cbb_wf.console.log('[*] Text_get_wholeText, 返回object'); break case "function": cbb_wf.console.log('[*] Text_get_wholeText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Text_get_wholeText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Text_get_assignedSlot = function () { let r = cbb_wf.checkIllegal(this, "Text"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.assignedSlot; switch (typeof result) { case "object": cbb_wf.console.log('[*] Text_get_assignedSlot, 返回object'); break case "function": cbb_wf.console.log('[*] Text_get_assignedSlot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Text_get_assignedSlot, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Text_splitText = function () { let r = cbb_wf.checkIllegal(this, "Text"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.splitText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Text_splitText, 返回object'); break case "function": cbb_wf.console.log('[*] Text_splitText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Text_splitText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TaskAttributionTiming_get_containerType = function () { let r = cbb_wf.checkIllegal(this, "TaskAttributionTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'containerType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskAttributionTiming_get_containerType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskAttributionTiming_get_containerSrc = function () { let r = cbb_wf.checkIllegal(this, "TaskAttributionTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'containerSrc'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskAttributionTiming_get_containerSrc, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskAttributionTiming_get_containerId = function () { let r = cbb_wf.checkIllegal(this, "TaskAttributionTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'containerId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskAttributionTiming_get_containerId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskAttributionTiming_get_containerName = function () { let r = cbb_wf.checkIllegal(this, "TaskAttributionTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'containerName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskAttributionTiming_get_containerName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskAttributionTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "TaskAttributionTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskAttributionTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SyncManager_getTags = function () { let r = cbb_wf.checkIllegal(this, "SyncManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SyncManager_getTags, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SyncManager_register = function () { let r = cbb_wf.checkIllegal(this, "SyncManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SyncManager_register, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubmitEvent_get_submitter = function () { let r = cbb_wf.checkIllegal(this, "SubmitEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'submitter'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubmitEvent_get_submitter, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StyleSheetList_get_length = function () { let r = cbb_wf.checkIllegal(this, "StyleSheetList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheetList_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheetList_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheetList_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheetList_item = function () { let r = cbb_wf.checkIllegal(this, "StyleSheetList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheetList_item, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheetList_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheetList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StyleSheet_get_type = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_get_href = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_get_ownerNode = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ownerNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_ownerNode, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_ownerNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_ownerNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_get_parentStyleSheet = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentStyleSheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_parentStyleSheet, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_parentStyleSheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_parentStyleSheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_get_title = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.title; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_title, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_title, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_title, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_get_media = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] StyleSheet_set_media, set object'); break case "function": cbb_wf.console.log('[*] StyleSheet_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.StyleSheet_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] StyleSheet_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] StyleSheet_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.StyleSheet_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "StyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] StyleSheet_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] StyleSheet_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StyleSheet_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.StylePropertyMapReadOnly_get_size = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StylePropertyMapReadOnly_get = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMapReadOnly_getAll = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_getAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMapReadOnly_has = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMapReadOnly_entries = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMapReadOnly_forEach = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMapReadOnly_keys = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMapReadOnly_values = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMapReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMapReadOnly_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMap_append = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMap_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMap_clear = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMap_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMap_delete = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMap_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StylePropertyMap_set = function () { let r = cbb_wf.checkIllegal(this, "StylePropertyMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StylePropertyMap_set, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageEvent_get_key = function () { let r = cbb_wf.checkIllegal(this, "StorageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'key'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageEvent_get_key, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageEvent_get_oldValue = function () { let r = cbb_wf.checkIllegal(this, "StorageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oldValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageEvent_get_oldValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageEvent_get_newValue = function () { let r = cbb_wf.checkIllegal(this, "StorageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'newValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageEvent_get_newValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageEvent_get_url = function () { let r = cbb_wf.checkIllegal(this, "StorageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageEvent_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageEvent_get_storageArea = function () { let r = cbb_wf.checkIllegal(this, "StorageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'storageArea'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageEvent_get_storageArea, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageEvent_initStorageEvent = function () { let r = cbb_wf.checkIllegal(this, "StorageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageEvent_initStorageEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Storage_get_length = function () { let r = cbb_wf.checkIllegal(this, "Storage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Storage_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Storage_clear = function () { let r = cbb_wf.checkIllegal(this, "Storage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Storage_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Storage_getItem = function () { let r = cbb_wf.checkIllegal(this, "Storage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Storage_getItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Storage_key = function () { let r = cbb_wf.checkIllegal(this, "Storage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Storage_key, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Storage_removeItem = function () { let r = cbb_wf.checkIllegal(this, "Storage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Storage_removeItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Storage_setItem = function () { let r = cbb_wf.checkIllegal(this, "Storage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Storage_setItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StereoPannerNode_get_pan = function () { let r = cbb_wf.checkIllegal(this, "StereoPannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pan'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StereoPannerNode_get_pan, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ShadowRoot_get_mode = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.mode; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_mode, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_mode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_mode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_host = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.host; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_host, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_host, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_host, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_onslotchange = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onslotchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_onslotchange, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_onslotchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_onslotchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_set_onslotchange = function (val) { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] ShadowRoot_set_onslotchange, set object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_set_onslotchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onslotchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_set_onslotchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.ShadowRoot_get_innerHTML = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.innerHTML; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_innerHTML, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_innerHTML, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_innerHTML, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_set_innerHTML = function (val) { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] ShadowRoot_set_innerHTML, set object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_set_innerHTML, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.innerHTML = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_set_innerHTML, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.ShadowRoot_get_delegatesFocus = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.delegatesFocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_delegatesFocus, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_delegatesFocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_delegatesFocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_slotAssignment = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.slotAssignment; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_slotAssignment, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_slotAssignment, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_slotAssignment, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_activeElement = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.activeElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_activeElement, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_activeElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_activeElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_styleSheets = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.styleSheets; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_styleSheets, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_styleSheets, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_styleSheets, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_pointerLockElement = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pointerLockElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_pointerLockElement, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_pointerLockElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_pointerLockElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_get_fullscreenElement = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fullscreenElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_fullscreenElement, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_fullscreenElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_fullscreenElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_set_fullscreenElement = function (val) { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] ShadowRoot_set_fullscreenElement, set object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_set_fullscreenElement, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fullscreenElement = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_set_fullscreenElement, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.ShadowRoot_get_adoptedStyleSheets = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.adoptedStyleSheets; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_adoptedStyleSheets, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_adoptedStyleSheets, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_adoptedStyleSheets, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_set_adoptedStyleSheets = function (val) { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] ShadowRoot_set_adoptedStyleSheets, set object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_set_adoptedStyleSheets, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.adoptedStyleSheets = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_set_adoptedStyleSheets, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.ShadowRoot_elementFromPoint = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elementFromPoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_elementFromPoint, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_elementFromPoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_elementFromPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ShadowRoot_elementsFromPoint = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elementsFromPoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_elementsFromPoint, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_elementsFromPoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_elementsFromPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ShadowRoot_getInnerHTML = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getInnerHTML.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_getInnerHTML, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_getInnerHTML, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_getInnerHTML, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ShadowRoot_getSelection = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSelection.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_getSelection, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_getSelection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_getSelection, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ShadowRoot_get_pictureInPictureElement = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pictureInPictureElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_get_pictureInPictureElement, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_get_pictureInPictureElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_get_pictureInPictureElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ShadowRoot_getAnimations = function () { let r = cbb_wf.checkIllegal(this, "ShadowRoot"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAnimations.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] ShadowRoot_getAnimations, 返回object'); break case "function": cbb_wf.console.log('[*] ShadowRoot_getAnimations, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ShadowRoot_getAnimations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_get_anchorNode = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.anchorNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_anchorNode, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_anchorNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_anchorNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_anchorOffset = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.anchorOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_anchorOffset, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_anchorOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_anchorOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_focusNode = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.focusNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_focusNode, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_focusNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_focusNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_focusOffset = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.focusOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_focusOffset, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_focusOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_focusOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_isCollapsed = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isCollapsed; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_isCollapsed, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_isCollapsed, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_isCollapsed, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_rangeCount = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rangeCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_rangeCount, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_rangeCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_rangeCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_type = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_baseNode = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.baseNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_baseNode, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_baseNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_baseNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_baseOffset = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.baseOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_baseOffset, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_baseOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_baseOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_extentNode = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.extentNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_extentNode, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_extentNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_extentNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_get_extentOffset = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.extentOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_get_extentOffset, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_get_extentOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_get_extentOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Selection_addRange = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.addRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_addRange, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_addRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_addRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_collapse = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.collapse.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_collapse, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_collapse, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_collapse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_collapseToEnd = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.collapseToEnd.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_collapseToEnd, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_collapseToEnd, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_collapseToEnd, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_collapseToStart = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.collapseToStart.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_collapseToStart, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_collapseToStart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_collapseToStart, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_containsNode = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.containsNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_containsNode, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_containsNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_containsNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_deleteFromDocument = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteFromDocument.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_deleteFromDocument, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_deleteFromDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_deleteFromDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_empty = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.empty.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_empty, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_empty, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_empty, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_extend = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.extend.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_extend, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_extend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_extend, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_getRangeAt = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getRangeAt.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_getRangeAt, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_getRangeAt, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_getRangeAt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_modify = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.modify.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_modify, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_modify, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_modify, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_removeAllRanges = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeAllRanges.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_removeAllRanges, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_removeAllRanges, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_removeAllRanges, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_removeRange = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_removeRange, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_removeRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_removeRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_selectAllChildren = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectAllChildren.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_selectAllChildren, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_selectAllChildren, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_selectAllChildren, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_setBaseAndExtent = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setBaseAndExtent.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_setBaseAndExtent, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_setBaseAndExtent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_setBaseAndExtent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_setPosition = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setPosition.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_setPosition, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_setPosition, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_setPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Selection_toString = function () { let r = cbb_wf.checkIllegal(this, "Selection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Selection_toString, 返回object'); break case "function": cbb_wf.console.log('[*] Selection_toString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Selection_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SecurityPolicyViolationEvent_get_documentURI = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'documentURI'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_documentURI, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_referrer = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'referrer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_referrer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_blockedURI = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'blockedURI'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_blockedURI, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_violatedDirective = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'violatedDirective'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_violatedDirective, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_effectiveDirective = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'effectiveDirective'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_effectiveDirective, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_originalPolicy = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'originalPolicy'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_originalPolicy, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_disposition = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'disposition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_disposition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_sourceFile = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sourceFile'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_sourceFile, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_statusCode = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'statusCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_statusCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_lineNumber = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineNumber'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_lineNumber, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_columnNumber = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'columnNumber'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_columnNumber, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SecurityPolicyViolationEvent_get_sample = function () { let r = cbb_wf.checkIllegal(this, "SecurityPolicyViolationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sample'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SecurityPolicyViolationEvent_get_sample, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScriptProcessorNode_get_onaudioprocess = function () { let r = cbb_wf.checkIllegal(this, "ScriptProcessorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaudioprocess'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScriptProcessorNode_get_onaudioprocess, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScriptProcessorNode_set_onaudioprocess = function (val) { let r = cbb_wf.checkIllegal(this, "ScriptProcessorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaudioprocess', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScriptProcessorNode_set_onaudioprocess, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ScriptProcessorNode_get_bufferSize = function () { let r = cbb_wf.checkIllegal(this, "ScriptProcessorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bufferSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScriptProcessorNode_get_bufferSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenOrientation_get_angle = function () { let r = cbb_wf.checkIllegal(this, "ScreenOrientation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'angle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenOrientation_get_angle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenOrientation_get_type = function () { let r = cbb_wf.checkIllegal(this, "ScreenOrientation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenOrientation_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenOrientation_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "ScreenOrientation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenOrientation_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenOrientation_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "ScreenOrientation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenOrientation_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ScreenOrientation_lock = function () { let r = cbb_wf.checkIllegal(this, "ScreenOrientation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenOrientation_lock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ScreenOrientation_unlock = function () { let r = cbb_wf.checkIllegal(this, "ScreenOrientation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenOrientation_unlock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Screen_get_availWidth = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'availWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_availWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_availHeight = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'availHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_availHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_width = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_height = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_colorDepth = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'colorDepth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_colorDepth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_pixelDepth = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pixelDepth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_pixelDepth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_availLeft = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'availLeft'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_availLeft, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_availTop = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'availTop'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_availTop, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_orientation = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'orientation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_orientation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Screen_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Screen_get_isExtended = function () { let r = cbb_wf.checkIllegal(this, "Screen"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isExtended'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Screen_get_isExtended, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Scheduling_isInputPending = function () { let r = cbb_wf.checkIllegal(this, "Scheduling"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Scheduling_isInputPending, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGViewElement_get_viewBox = function () { let r = cbb_wf.checkIllegal(this, "SVGViewElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.viewBox; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGViewElement_get_viewBox, 返回object'); break case "function": cbb_wf.console.log('[*] SVGViewElement_get_viewBox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGViewElement_get_viewBox, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGViewElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGViewElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGViewElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGViewElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGViewElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGViewElement_get_zoomAndPan = function () { let r = cbb_wf.checkIllegal(this, "SVGViewElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.zoomAndPan; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGViewElement_get_zoomAndPan, 返回object'); break case "function": cbb_wf.console.log('[*] SVGViewElement_get_zoomAndPan, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGViewElement_get_zoomAndPan, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGViewElement_set_zoomAndPan = function (val) { let r = cbb_wf.checkIllegal(this, "SVGViewElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGViewElement_set_zoomAndPan, set object'); break case "function": cbb_wf.console.log('[*] SVGViewElement_set_zoomAndPan, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.zoomAndPan = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGViewElement_set_zoomAndPan, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGUseElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGUseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGUseElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGUseElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGUseElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGUseElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGUseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGUseElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGUseElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGUseElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGUseElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGUseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGUseElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGUseElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGUseElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGUseElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGUseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGUseElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGUseElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGUseElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGUseElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGUseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGUseElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGUseElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGUseElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTransformList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGTransformList_get_numberOfItems = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfItems'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_get_numberOfItems, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGTransformList_appendItem = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_appendItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_clear = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_consolidate = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_consolidate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_createSVGTransformFromMatrix = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_createSVGTransformFromMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_getItem = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_getItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_initialize = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_initialize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_insertItemBefore = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_insertItemBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_removeItem = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_removeItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransformList_replaceItem = function () { let r = cbb_wf.checkIllegal(this, "SVGTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransformList_replaceItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransform_get_type = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGTransform_get_matrix = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matrix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_get_matrix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGTransform_get_angle = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'angle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_get_angle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGTransform_setMatrix = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_setMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransform_setRotate = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_setRotate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransform_setScale = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_setScale, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransform_setSkewX = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_setSkewX, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransform_setSkewY = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_setSkewY, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTransform_setTranslate = function () { let r = cbb_wf.checkIllegal(this, "SVGTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTransform_setTranslate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextPositioningElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPositioningElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPositioningElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPositioningElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPositioningElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPositioningElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPositioningElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPositioningElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPositioningElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPositioningElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPositioningElement_get_dx = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPositioningElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPositioningElement_get_dx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPositioningElement_get_dx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPositioningElement_get_dx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPositioningElement_get_dy = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPositioningElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPositioningElement_get_dy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPositioningElement_get_dy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPositioningElement_get_dy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPositioningElement_get_rotate = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPositioningElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rotate; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPositioningElement_get_rotate, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPositioningElement_get_rotate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPositioningElement_get_rotate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPathElement_get_startOffset = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPathElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.startOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPathElement_get_startOffset, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPathElement_get_startOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPathElement_get_startOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPathElement_get_method = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPathElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.method; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPathElement_get_method, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPathElement_get_method, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPathElement_get_method, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPathElement_get_spacing = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPathElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.spacing; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPathElement_get_spacing, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPathElement_get_spacing, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPathElement_get_spacing, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextPathElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGTextPathElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextPathElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextPathElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextPathElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextContentElement_get_textLength = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_get_textLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_get_textLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_get_textLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextContentElement_get_lengthAdjust = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lengthAdjust; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_get_lengthAdjust, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_get_lengthAdjust, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_get_lengthAdjust, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGTextContentElement_getCharNumAtPosition = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getCharNumAtPosition.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getCharNumAtPosition, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getCharNumAtPosition, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getCharNumAtPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getComputedTextLength = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getComputedTextLength.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getComputedTextLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getComputedTextLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getComputedTextLength, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getEndPositionOfChar = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getEndPositionOfChar.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getEndPositionOfChar, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getEndPositionOfChar, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getEndPositionOfChar, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getExtentOfChar = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getExtentOfChar.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getExtentOfChar, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getExtentOfChar, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getExtentOfChar, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getNumberOfChars = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getNumberOfChars.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getNumberOfChars, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getNumberOfChars, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getNumberOfChars, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getRotationOfChar = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getRotationOfChar.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getRotationOfChar, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getRotationOfChar, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getRotationOfChar, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getStartPositionOfChar = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getStartPositionOfChar.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getStartPositionOfChar, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getStartPositionOfChar, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getStartPositionOfChar, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_getSubStringLength = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSubStringLength.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_getSubStringLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_getSubStringLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_getSubStringLength, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGTextContentElement_selectSubString = function () { let r = cbb_wf.checkIllegal(this, "SVGTextContentElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectSubString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGTextContentElement_selectSubString, 返回object'); break case "function": cbb_wf.console.log('[*] SVGTextContentElement_selectSubString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGTextContentElement_selectSubString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSymbolElement_get_viewBox = function () { let r = cbb_wf.checkIllegal(this, "SVGSymbolElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.viewBox; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSymbolElement_get_viewBox, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSymbolElement_get_viewBox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSymbolElement_get_viewBox, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSymbolElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGSymbolElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSymbolElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSymbolElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSymbolElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStyleElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStyleElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStyleElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGStyleElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGStyleElement_get_media = function () { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStyleElement_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStyleElement_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGStyleElement_set_media, set object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGStyleElement_get_title = function () { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.title; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStyleElement_get_title, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_get_title, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_get_title, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStyleElement_set_title = function (val) { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGStyleElement_set_title, set object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_set_title, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.title = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_set_title, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGStyleElement_get_sheet = function () { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStyleElement_get_sheet, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_get_sheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_get_sheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStyleElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStyleElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStyleElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "SVGStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGStyleElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] SVGStyleElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStyleElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGStringList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStringList_get_numberOfItems = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.numberOfItems; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_get_numberOfItems, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_get_numberOfItems, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_get_numberOfItems, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGStringList_appendItem = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.appendItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_appendItem, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_appendItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_appendItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStringList_clear = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clear.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_clear, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_clear, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStringList_getItem = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_getItem, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_getItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_getItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStringList_initialize = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.initialize.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_initialize, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_initialize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_initialize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStringList_insertItemBefore = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertItemBefore.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_insertItemBefore, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_insertItemBefore, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_insertItemBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStringList_removeItem = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_removeItem, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_removeItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_removeItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStringList_replaceItem = function () { let r = cbb_wf.checkIllegal(this, "SVGStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStringList_replaceItem, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStringList_replaceItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStringList_replaceItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGStopElement_get_offset = function () { let r = cbb_wf.checkIllegal(this, "SVGStopElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offset; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGStopElement_get_offset, 返回object'); break case "function": cbb_wf.console.log('[*] SVGStopElement_get_offset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGStopElement_get_offset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGScriptElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "SVGScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGScriptElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] SVGScriptElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGScriptElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGScriptElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "SVGScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGScriptElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] SVGScriptElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGScriptElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGScriptElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGScriptElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGScriptElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGScriptElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_currentScale = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentScale; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_currentScale, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_currentScale, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_currentScale, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_set_currentScale = function (val) { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGSVGElement_set_currentScale, set object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_set_currentScale, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.currentScale = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_set_currentScale, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGSVGElement_get_currentTranslate = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentTranslate; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_currentTranslate, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_currentTranslate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_currentTranslate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_viewBox = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.viewBox; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_viewBox, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_viewBox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_viewBox, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_get_zoomAndPan = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.zoomAndPan; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_get_zoomAndPan, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_get_zoomAndPan, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_get_zoomAndPan, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGSVGElement_set_zoomAndPan = function (val) { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGSVGElement_set_zoomAndPan, set object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_set_zoomAndPan, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.zoomAndPan = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_set_zoomAndPan, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGSVGElement_animationsPaused = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.animationsPaused.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_animationsPaused, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_animationsPaused, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_animationsPaused, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_checkEnclosure = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkEnclosure.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_checkEnclosure, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_checkEnclosure, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_checkEnclosure, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_checkIntersection = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkIntersection.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_checkIntersection, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_checkIntersection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_checkIntersection, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGAngle = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGAngle.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGAngle, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGAngle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGAngle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGLength = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGLength.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGLength, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGMatrix = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGMatrix.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGMatrix, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGMatrix, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGNumber = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGNumber.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGNumber, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGNumber, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGNumber, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGPoint = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGPoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGPoint, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGPoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGRect = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGRect, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGTransform = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGTransform.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGTransform, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGTransform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_createSVGTransformFromMatrix = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createSVGTransformFromMatrix.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_createSVGTransformFromMatrix, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_createSVGTransformFromMatrix, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_createSVGTransformFromMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_deselectAll = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deselectAll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_deselectAll, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_deselectAll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_deselectAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_forceRedraw = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.forceRedraw.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_forceRedraw, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_forceRedraw, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_forceRedraw, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_getCurrentTime = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getCurrentTime.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_getCurrentTime, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_getCurrentTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_getCurrentTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_getElementById = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementById.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_getElementById, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_getElementById, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_getElementById, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_getEnclosureList = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getEnclosureList.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_getEnclosureList, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_getEnclosureList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_getEnclosureList, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_getIntersectionList = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getIntersectionList.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_getIntersectionList, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_getIntersectionList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_getIntersectionList, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_pauseAnimations = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pauseAnimations.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_pauseAnimations, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_pauseAnimations, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_pauseAnimations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_setCurrentTime = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCurrentTime.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_setCurrentTime, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_setCurrentTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_setCurrentTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_suspendRedraw = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.suspendRedraw.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_suspendRedraw, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_suspendRedraw, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_suspendRedraw, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_unpauseAnimations = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.unpauseAnimations.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_unpauseAnimations, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_unpauseAnimations, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_unpauseAnimations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_unsuspendRedraw = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.unsuspendRedraw.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_unsuspendRedraw, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_unsuspendRedraw, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_unsuspendRedraw, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGSVGElement_unsuspendRedrawAll = function () { let r = cbb_wf.checkIllegal(this, "SVGSVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.unsuspendRedrawAll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGSVGElement_unsuspendRedrawAll, 返回object'); break case "function": cbb_wf.console.log('[*] SVGSVGElement_unsuspendRedrawAll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGSVGElement_unsuspendRedrawAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGRectElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGRectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRectElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRectElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRectElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRectElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGRectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRectElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRectElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRectElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRectElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGRectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRectElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRectElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRectElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRectElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGRectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRectElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRectElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRectElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRectElement_get_rx = function () { let r = cbb_wf.checkIllegal(this, "SVGRectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRectElement_get_rx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRectElement_get_rx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRectElement_get_rx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRectElement_get_ry = function () { let r = cbb_wf.checkIllegal(this, "SVGRectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ry; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRectElement_get_ry, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRectElement_get_ry, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRectElement_get_ry, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRect_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGRect_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGRect_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGRect_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGRect_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGRect_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'width', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_set_width, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGRect_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGRect_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "SVGRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'height', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRect_set_height, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGRadialGradientElement_get_cx = function () { let r = cbb_wf.checkIllegal(this, "SVGRadialGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRadialGradientElement_get_cx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRadialGradientElement_get_cx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRadialGradientElement_get_cx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRadialGradientElement_get_cy = function () { let r = cbb_wf.checkIllegal(this, "SVGRadialGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRadialGradientElement_get_cy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRadialGradientElement_get_cy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRadialGradientElement_get_cy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRadialGradientElement_get_r = function () { let r = cbb_wf.checkIllegal(this, "SVGRadialGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.r; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRadialGradientElement_get_r, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRadialGradientElement_get_r, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRadialGradientElement_get_r, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRadialGradientElement_get_fx = function () { let r = cbb_wf.checkIllegal(this, "SVGRadialGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRadialGradientElement_get_fx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRadialGradientElement_get_fx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRadialGradientElement_get_fx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRadialGradientElement_get_fy = function () { let r = cbb_wf.checkIllegal(this, "SVGRadialGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRadialGradientElement_get_fy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRadialGradientElement_get_fy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRadialGradientElement_get_fy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGRadialGradientElement_get_fr = function () { let r = cbb_wf.checkIllegal(this, "SVGRadialGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fr; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGRadialGradientElement_get_fr, 返回object'); break case "function": cbb_wf.console.log('[*] SVGRadialGradientElement_get_fr, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGRadialGradientElement_get_fr, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPreserveAspectRatio_get_align = function () { let r = cbb_wf.checkIllegal(this, "SVGPreserveAspectRatio"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'align'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPreserveAspectRatio_get_align, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGPreserveAspectRatio_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "SVGPreserveAspectRatio"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'align', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPreserveAspectRatio_set_align, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGPreserveAspectRatio_get_meetOrSlice = function () { let r = cbb_wf.checkIllegal(this, "SVGPreserveAspectRatio"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'meetOrSlice'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPreserveAspectRatio_get_meetOrSlice, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGPreserveAspectRatio_set_meetOrSlice = function (val) { let r = cbb_wf.checkIllegal(this, "SVGPreserveAspectRatio"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'meetOrSlice', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPreserveAspectRatio_set_meetOrSlice, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGPolylineElement_get_points = function () { let r = cbb_wf.checkIllegal(this, "SVGPolylineElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.points; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPolylineElement_get_points, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPolylineElement_get_points, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPolylineElement_get_points, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPolylineElement_get_animatedPoints = function () { let r = cbb_wf.checkIllegal(this, "SVGPolylineElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.animatedPoints; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPolylineElement_get_animatedPoints, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPolylineElement_get_animatedPoints, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPolylineElement_get_animatedPoints, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPolygonElement_get_points = function () { let r = cbb_wf.checkIllegal(this, "SVGPolygonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.points; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPolygonElement_get_points, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPolygonElement_get_points, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPolygonElement_get_points, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPolygonElement_get_animatedPoints = function () { let r = cbb_wf.checkIllegal(this, "SVGPolygonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.animatedPoints; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPolygonElement_get_animatedPoints, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPolygonElement_get_animatedPoints, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPolygonElement_get_animatedPoints, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPointList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGPointList_get_numberOfItems = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfItems'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_get_numberOfItems, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGPointList_appendItem = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_appendItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPointList_clear = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPointList_getItem = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_getItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPointList_initialize = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_initialize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPointList_insertItemBefore = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_insertItemBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPointList_removeItem = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_removeItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPointList_replaceItem = function () { let r = cbb_wf.checkIllegal(this, "SVGPointList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPointList_replaceItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPoint_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPoint_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGPoint_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "SVGPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPoint_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGPoint_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPoint_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGPoint_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "SVGPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPoint_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGPoint_matrixTransform = function () { let r = cbb_wf.checkIllegal(this, "SVGPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPoint_matrixTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGPatternElement_get_patternUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.patternUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_patternUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_patternUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_patternUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_patternContentUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.patternContentUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_patternContentUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_patternContentUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_patternContentUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_patternTransform = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.patternTransform; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_patternTransform, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_patternTransform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_patternTransform, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_viewBox = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.viewBox; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_viewBox, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_viewBox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_viewBox, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_requiredExtensions = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requiredExtensions; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_requiredExtensions, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_requiredExtensions, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_requiredExtensions, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGPatternElement_get_systemLanguage = function () { let r = cbb_wf.checkIllegal(this, "SVGPatternElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.systemLanguage; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGPatternElement_get_systemLanguage, 返回object'); break case "function": cbb_wf.console.log('[*] SVGPatternElement_get_systemLanguage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGPatternElement_get_systemLanguage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGNumberList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGNumberList_get_numberOfItems = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfItems'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_get_numberOfItems, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGNumberList_appendItem = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_appendItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumberList_clear = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumberList_getItem = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_getItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumberList_initialize = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_initialize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumberList_insertItemBefore = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_insertItemBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumberList_removeItem = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_removeItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumberList_replaceItem = function () { let r = cbb_wf.checkIllegal(this, "SVGNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumberList_replaceItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGNumber_get_value = function () { let r = cbb_wf.checkIllegal(this, "SVGNumber"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGNumber_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] SVGNumber_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumber_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGNumber_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "SVGNumber"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGNumber_set_value, set object'); break case "function": cbb_wf.console.log('[*] SVGNumber_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGNumber_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGMatrix_get_a = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'a'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_get_a, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGMatrix_set_a = function (val) { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'a', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_set_a, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGMatrix_get_b = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'b'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_get_b, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGMatrix_set_b = function (val) { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'b', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_set_b, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGMatrix_get_c = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'c'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_get_c, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGMatrix_set_c = function (val) { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'c', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_set_c, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGMatrix_get_d = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_get_d, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGMatrix_set_d = function (val) { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_set_d, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGMatrix_get_e = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'e'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_get_e, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGMatrix_set_e = function (val) { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'e', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_set_e, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGMatrix_get_f = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'f'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_get_f, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGMatrix_set_f = function (val) { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'f', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_set_f, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGMatrix_flipX = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_flipX, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_flipY = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_flipY, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_inverse = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_inverse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_multiply = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_multiply, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_rotate = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_rotate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_rotateFromVector = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_rotateFromVector, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_scale = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_scale, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_scaleNonUniform = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_scaleNonUniform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_skewX = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_skewX, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_skewY = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_skewY, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMatrix_translate = function () { let r = cbb_wf.checkIllegal(this, "SVGMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMatrix_translate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMaskElement_get_maskUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.maskUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_maskUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_maskUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_maskUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_maskContentUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.maskContentUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_maskContentUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_maskContentUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_maskContentUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_requiredExtensions = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requiredExtensions; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_requiredExtensions, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_requiredExtensions, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_requiredExtensions, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMaskElement_get_systemLanguage = function () { let r = cbb_wf.checkIllegal(this, "SVGMaskElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.systemLanguage; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMaskElement_get_systemLanguage, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMaskElement_get_systemLanguage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMaskElement_get_systemLanguage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_refX = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.refX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_refX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_refX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_refX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_refY = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.refY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_refY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_refY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_refY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_markerUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.markerUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_markerUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_markerUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_markerUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_markerWidth = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.markerWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_markerWidth, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_markerWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_markerWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_markerHeight = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.markerHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_markerHeight, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_markerHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_markerHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_orientType = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.orientType; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_orientType, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_orientType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_orientType, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_orientAngle = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.orientAngle; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_orientAngle, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_orientAngle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_orientAngle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_viewBox = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.viewBox; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_viewBox, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_viewBox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_viewBox, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGMarkerElement_setOrientToAngle = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setOrientToAngle.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_setOrientToAngle, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_setOrientToAngle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_setOrientToAngle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMarkerElement_setOrientToAuto = function () { let r = cbb_wf.checkIllegal(this, "SVGMarkerElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setOrientToAuto.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMarkerElement_setOrientToAuto, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMarkerElement_setOrientToAuto, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMarkerElement_setOrientToAuto, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGMPathElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGMPathElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGMPathElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGMPathElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGMPathElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLinearGradientElement_get_x1 = function () { let r = cbb_wf.checkIllegal(this, "SVGLinearGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLinearGradientElement_get_x1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLinearGradientElement_get_x1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLinearGradientElement_get_x1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLinearGradientElement_get_y1 = function () { let r = cbb_wf.checkIllegal(this, "SVGLinearGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLinearGradientElement_get_y1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLinearGradientElement_get_y1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLinearGradientElement_get_y1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLinearGradientElement_get_x2 = function () { let r = cbb_wf.checkIllegal(this, "SVGLinearGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLinearGradientElement_get_x2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLinearGradientElement_get_x2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLinearGradientElement_get_x2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLinearGradientElement_get_y2 = function () { let r = cbb_wf.checkIllegal(this, "SVGLinearGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLinearGradientElement_get_y2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLinearGradientElement_get_y2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLinearGradientElement_get_y2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLineElement_get_x1 = function () { let r = cbb_wf.checkIllegal(this, "SVGLineElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLineElement_get_x1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLineElement_get_x1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLineElement_get_x1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLineElement_get_y1 = function () { let r = cbb_wf.checkIllegal(this, "SVGLineElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLineElement_get_y1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLineElement_get_y1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLineElement_get_y1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLineElement_get_x2 = function () { let r = cbb_wf.checkIllegal(this, "SVGLineElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLineElement_get_x2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLineElement_get_x2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLineElement_get_x2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLineElement_get_y2 = function () { let r = cbb_wf.checkIllegal(this, "SVGLineElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGLineElement_get_y2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGLineElement_get_y2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLineElement_get_y2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGLengthList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGLengthList_get_numberOfItems = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfItems'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_get_numberOfItems, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGLengthList_appendItem = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_appendItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLengthList_clear = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLengthList_getItem = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_getItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLengthList_initialize = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_initialize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLengthList_insertItemBefore = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_insertItemBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLengthList_removeItem = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_removeItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLengthList_replaceItem = function () { let r = cbb_wf.checkIllegal(this, "SVGLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLengthList_replaceItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLength_get_unitType = function () { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unitType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_get_unitType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGLength_get_value = function () { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGLength_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'value', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_set_value, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGLength_get_valueInSpecifiedUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'valueInSpecifiedUnits'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_get_valueInSpecifiedUnits, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGLength_set_valueInSpecifiedUnits = function (val) { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'valueInSpecifiedUnits', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_set_valueInSpecifiedUnits, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGLength_get_valueAsString = function () { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'valueAsString'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_get_valueAsString, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGLength_set_valueAsString = function (val) { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'valueAsString', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_set_valueAsString, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGLength_convertToSpecifiedUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_convertToSpecifiedUnits, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGLength_newValueSpecifiedUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGLength_newValueSpecifiedUnits, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGImageElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_get_decoding = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.decoding; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_decoding, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_decoding, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_decoding, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_set_decoding = function (val) { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGImageElement_set_decoding, set object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_set_decoding, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.decoding = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_set_decoding, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGImageElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGImageElement_decode = function () { let r = cbb_wf.checkIllegal(this, "SVGImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.decode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGImageElement_decode, 返回object'); break case "function": cbb_wf.console.log('[*] SVGImageElement_decode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGImageElement_decode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGraphicsElement_get_transform = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.transform; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_get_transform, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_get_transform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_get_transform, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGraphicsElement_get_nearestViewportElement = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nearestViewportElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_get_nearestViewportElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_get_nearestViewportElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_get_nearestViewportElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGraphicsElement_get_farthestViewportElement = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.farthestViewportElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_get_farthestViewportElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_get_farthestViewportElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_get_farthestViewportElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGraphicsElement_get_requiredExtensions = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requiredExtensions; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_get_requiredExtensions, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_get_requiredExtensions, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_get_requiredExtensions, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGraphicsElement_get_systemLanguage = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.systemLanguage; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_get_systemLanguage, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_get_systemLanguage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_get_systemLanguage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGraphicsElement_getBBox = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getBBox.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_getBBox, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_getBBox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_getBBox, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGraphicsElement_getCTM = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getCTM.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_getCTM, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_getCTM, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_getCTM, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGraphicsElement_getScreenCTM = function () { let r = cbb_wf.checkIllegal(this, "SVGGraphicsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getScreenCTM.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGraphicsElement_getScreenCTM, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGraphicsElement_getScreenCTM, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGraphicsElement_getScreenCTM, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGradientElement_get_gradientUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.gradientUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGradientElement_get_gradientUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGradientElement_get_gradientUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGradientElement_get_gradientUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGradientElement_get_gradientTransform = function () { let r = cbb_wf.checkIllegal(this, "SVGGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.gradientTransform; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGradientElement_get_gradientTransform, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGradientElement_get_gradientTransform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGradientElement_get_gradientTransform, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGradientElement_get_spreadMethod = function () { let r = cbb_wf.checkIllegal(this, "SVGGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.spreadMethod; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGradientElement_get_spreadMethod, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGradientElement_get_spreadMethod, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGradientElement_get_spreadMethod, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGradientElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGGradientElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGradientElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGradientElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGradientElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGeometryElement_get_pathLength = function () { let r = cbb_wf.checkIllegal(this, "SVGGeometryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pathLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGeometryElement_get_pathLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGeometryElement_get_pathLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGeometryElement_get_pathLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGGeometryElement_getPointAtLength = function () { let r = cbb_wf.checkIllegal(this, "SVGGeometryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getPointAtLength.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGeometryElement_getPointAtLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGeometryElement_getPointAtLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGeometryElement_getPointAtLength, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGeometryElement_getTotalLength = function () { let r = cbb_wf.checkIllegal(this, "SVGGeometryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getTotalLength.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGeometryElement_getTotalLength, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGeometryElement_getTotalLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGeometryElement_getTotalLength, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGeometryElement_isPointInFill = function () { let r = cbb_wf.checkIllegal(this, "SVGGeometryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isPointInFill.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGeometryElement_isPointInFill, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGeometryElement_isPointInFill, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGeometryElement_isPointInFill, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGGeometryElement_isPointInStroke = function () { let r = cbb_wf.checkIllegal(this, "SVGGeometryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isPointInStroke.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGGeometryElement_isPointInStroke, 返回object'); break case "function": cbb_wf.console.log('[*] SVGGeometryElement_isPointInStroke, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGGeometryElement_isPointInStroke, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGForeignObjectElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGForeignObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGForeignObjectElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGForeignObjectElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGForeignObjectElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGForeignObjectElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGForeignObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGForeignObjectElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGForeignObjectElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGForeignObjectElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGForeignObjectElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGForeignObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGForeignObjectElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGForeignObjectElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGForeignObjectElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGForeignObjectElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGForeignObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGForeignObjectElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGForeignObjectElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGForeignObjectElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_filterUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.filterUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_filterUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_filterUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_filterUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_primitiveUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.primitiveUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_primitiveUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_primitiveUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_primitiveUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFilterElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGFilterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFilterElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFilterElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFilterElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_baseFrequencyX = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.baseFrequencyX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_baseFrequencyX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_baseFrequencyX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_baseFrequencyX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_baseFrequencyY = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.baseFrequencyY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_baseFrequencyY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_baseFrequencyY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_baseFrequencyY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_numOctaves = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.numOctaves; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_numOctaves, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_numOctaves, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_numOctaves, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_seed = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.seed; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_seed, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_seed, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_seed, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_stitchTiles = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stitchTiles; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_stitchTiles, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_stitchTiles, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_stitchTiles, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETurbulenceElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFETurbulenceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETurbulenceElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETurbulenceElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETileElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFETileElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETileElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETileElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETileElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETileElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFETileElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETileElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETileElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETileElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETileElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFETileElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETileElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETileElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETileElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETileElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFETileElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETileElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETileElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETileElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETileElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFETileElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETileElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETileElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETileElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFETileElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFETileElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFETileElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFETileElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFETileElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_z = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.z; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_z, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_z, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_z, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_pointsAtX = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pointsAtX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_pointsAtX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_pointsAtX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_pointsAtX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_pointsAtY = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pointsAtY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_pointsAtY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_pointsAtY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_pointsAtY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_pointsAtZ = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pointsAtZ; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_pointsAtZ, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_pointsAtZ, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_pointsAtZ, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_specularExponent = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.specularExponent; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_specularExponent, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_specularExponent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_specularExponent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpotLightElement_get_limitingConeAngle = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpotLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.limitingConeAngle; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpotLightElement_get_limitingConeAngle, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpotLightElement_get_limitingConeAngle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpotLightElement_get_limitingConeAngle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_surfaceScale = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.surfaceScale; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_surfaceScale, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_surfaceScale, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_surfaceScale, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_specularConstant = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.specularConstant; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_specularConstant, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_specularConstant, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_specularConstant, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_specularExponent = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.specularExponent; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_specularExponent, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_specularExponent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_specularExponent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_kernelUnitLengthX = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelUnitLengthX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_kernelUnitLengthX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_kernelUnitLengthX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_kernelUnitLengthX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_kernelUnitLengthY = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelUnitLengthY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_kernelUnitLengthY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_kernelUnitLengthY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_kernelUnitLengthY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFESpecularLightingElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFESpecularLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFESpecularLightingElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFESpecularLightingElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEPointLightElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEPointLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEPointLightElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEPointLightElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEPointLightElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEPointLightElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEPointLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEPointLightElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEPointLightElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEPointLightElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEPointLightElement_get_z = function () { let r = cbb_wf.checkIllegal(this, "SVGFEPointLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.z; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEPointLightElement_get_z, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEPointLightElement_get_z, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEPointLightElement_get_z, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_dx = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_dx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_dx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_dx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_dy = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_dy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_dy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_dy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEOffsetElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEOffsetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEOffsetElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEOffsetElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEOffsetElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_operator = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.operator; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_operator, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_operator, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_operator, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_radiusX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.radiusX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_radiusX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_radiusX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_radiusX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_radiusY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.radiusY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_radiusY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_radiusY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_radiusY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMorphologyElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMorphologyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMorphologyElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMorphologyElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMergeNodeElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMergeNodeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMergeNodeElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMergeNodeElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMergeNodeElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMergeElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMergeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMergeElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMergeElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMergeElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMergeElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMergeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMergeElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMergeElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMergeElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMergeElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMergeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMergeElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMergeElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMergeElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMergeElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMergeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMergeElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMergeElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMergeElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEMergeElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEMergeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEMergeElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEMergeElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEMergeElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_preserveAspectRatio = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAspectRatio; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_preserveAspectRatio, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_preserveAspectRatio, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_preserveAspectRatio, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEImageElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGFEImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEImageElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEImageElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEImageElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_stdDeviationX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stdDeviationX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_stdDeviationX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_stdDeviationX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_stdDeviationX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_stdDeviationY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stdDeviationY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_stdDeviationY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_stdDeviationY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_stdDeviationY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEGaussianBlurElement_setStdDeviation = function () { let r = cbb_wf.checkIllegal(this, "SVGFEGaussianBlurElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setStdDeviation.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_setStdDeviation, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEGaussianBlurElement_setStdDeviation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEGaussianBlurElement_setStdDeviation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGFEFloodElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEFloodElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEFloodElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEFloodElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEFloodElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEFloodElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEFloodElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEFloodElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEFloodElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEFloodElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEFloodElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEFloodElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEFloodElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEFloodElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEFloodElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEFloodElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEFloodElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEFloodElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEFloodElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEFloodElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEFloodElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEFloodElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEFloodElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEFloodElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEFloodElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_dx = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_dx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_dx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_dx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_dy = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_dy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_dy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_dy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_stdDeviationX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stdDeviationX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_stdDeviationX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_stdDeviationX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_stdDeviationX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_stdDeviationY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stdDeviationY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_stdDeviationY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_stdDeviationY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_stdDeviationY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDropShadowElement_setStdDeviation = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDropShadowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setStdDeviation.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDropShadowElement_setStdDeviation, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDropShadowElement_setStdDeviation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDropShadowElement_setStdDeviation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGFEDistantLightElement_get_azimuth = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDistantLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.azimuth; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDistantLightElement_get_azimuth, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDistantLightElement_get_azimuth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDistantLightElement_get_azimuth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDistantLightElement_get_elevation = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDistantLightElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elevation; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDistantLightElement_get_elevation, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDistantLightElement_get_elevation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDistantLightElement_get_elevation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_in2 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_in2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_in2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_in2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_scale = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scale; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_scale, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_scale, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_scale, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_xChannelSelector = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.xChannelSelector; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_xChannelSelector, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_xChannelSelector, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_xChannelSelector, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_yChannelSelector = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.yChannelSelector; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_yChannelSelector, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_yChannelSelector, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_yChannelSelector, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDisplacementMapElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDisplacementMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDisplacementMapElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDisplacementMapElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_surfaceScale = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.surfaceScale; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_surfaceScale, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_surfaceScale, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_surfaceScale, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_diffuseConstant = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.diffuseConstant; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_diffuseConstant, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_diffuseConstant, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_diffuseConstant, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_kernelUnitLengthX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelUnitLengthX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_kernelUnitLengthX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_kernelUnitLengthX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_kernelUnitLengthX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_kernelUnitLengthY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelUnitLengthY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_kernelUnitLengthY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_kernelUnitLengthY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_kernelUnitLengthY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEDiffuseLightingElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEDiffuseLightingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEDiffuseLightingElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEDiffuseLightingElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_orderX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.orderX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_orderX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_orderX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_orderX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_orderY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.orderY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_orderY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_orderY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_orderY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_kernelMatrix = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelMatrix; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_kernelMatrix, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_kernelMatrix, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_kernelMatrix, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_divisor = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.divisor; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_divisor, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_divisor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_divisor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_bias = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bias; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_bias, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_bias, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_bias, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_targetX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.targetX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_targetX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_targetX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_targetX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_targetY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.targetY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_targetY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_targetY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_targetY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_edgeMode = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.edgeMode; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_edgeMode, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_edgeMode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_edgeMode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_kernelUnitLengthX = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelUnitLengthX; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_kernelUnitLengthX, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_kernelUnitLengthX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_kernelUnitLengthX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_kernelUnitLengthY = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kernelUnitLengthY; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_kernelUnitLengthY, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_kernelUnitLengthY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_kernelUnitLengthY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_preserveAlpha = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preserveAlpha; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_preserveAlpha, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_preserveAlpha, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_preserveAlpha, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEConvolveMatrixElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEConvolveMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEConvolveMatrixElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEConvolveMatrixElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_in2 = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_in2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_in2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_in2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_operator = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.operator; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_operator, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_operator, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_operator, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_k1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.k1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_k1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_k1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_k1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_k2 = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.k2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_k2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_k2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_k2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_k3 = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.k3; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_k3, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_k3, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_k3, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_k4 = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.k4; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_k4, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_k4, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_k4, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFECompositeElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFECompositeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFECompositeElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFECompositeElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFECompositeElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEComponentTransferElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEComponentTransferElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEComponentTransferElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEComponentTransferElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEComponentTransferElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEComponentTransferElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEComponentTransferElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEComponentTransferElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEComponentTransferElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEComponentTransferElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEComponentTransferElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEComponentTransferElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEComponentTransferElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEComponentTransferElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEComponentTransferElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEComponentTransferElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEComponentTransferElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEComponentTransferElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEComponentTransferElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_values = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.values; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_values, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_values, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_values, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEColorMatrixElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEColorMatrixElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEColorMatrixElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEColorMatrixElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_in1 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in1; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_in1, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_in1, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_in1, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_in2 = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.in2; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_in2, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_in2, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_in2, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_mode = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.mode; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_mode, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_mode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_mode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGFEBlendElement_get_result = function () { let r = cbb_wf.checkIllegal(this, "SVGFEBlendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.result; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGFEBlendElement_get_result, 返回object'); break case "function": cbb_wf.console.log('[*] SVGFEBlendElement_get_result, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGFEBlendElement_get_result, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGEllipseElement_get_cx = function () { let r = cbb_wf.checkIllegal(this, "SVGEllipseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGEllipseElement_get_cx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGEllipseElement_get_cx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGEllipseElement_get_cx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGEllipseElement_get_cy = function () { let r = cbb_wf.checkIllegal(this, "SVGEllipseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGEllipseElement_get_cy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGEllipseElement_get_cy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGEllipseElement_get_cy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGEllipseElement_get_rx = function () { let r = cbb_wf.checkIllegal(this, "SVGEllipseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGEllipseElement_get_rx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGEllipseElement_get_rx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGEllipseElement_get_rx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGEllipseElement_get_ry = function () { let r = cbb_wf.checkIllegal(this, "SVGEllipseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ry; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGEllipseElement_get_ry, 返回object'); break case "function": cbb_wf.console.log('[*] SVGEllipseElement_get_ry, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGEllipseElement_get_ry, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_get_className = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.className; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_className, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_className, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_className, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_get_ownerSVGElement = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ownerSVGElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ownerSVGElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ownerSVGElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ownerSVGElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_get_viewportElement = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.viewportElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_viewportElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_viewportElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_viewportElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_get_onbeforexrselect = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforexrselect; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onbeforexrselect, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onbeforexrselect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onbeforexrselect, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onbeforexrselect = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onbeforexrselect, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onbeforexrselect, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforexrselect = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onbeforexrselect, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onabort; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onabort, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onabort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onabort, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onabort, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onabort, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onabort = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onabort, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onblur = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onblur; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onblur, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onblur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onblur, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onblur = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onblur, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onblur, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onblur = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onblur, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncancel = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncancel, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncancel = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncancel, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncanplay = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncanplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncanplay, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncanplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncanplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncanplay = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncanplay, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncanplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncanplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncanplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncanplaythrough = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncanplaythrough; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncanplaythrough, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncanplaythrough, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncanplaythrough, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncanplaythrough = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncanplaythrough, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncanplaythrough, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncanplaythrough = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncanplaythrough, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onchange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onchange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onclick = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onclick, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onclick = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onclick, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onclose; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onclose, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onclose, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onclose, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onclose, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onclose, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onclose = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onclose, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncontextlost = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextlost; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncontextlost, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncontextlost, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncontextlost, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncontextlost = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncontextlost, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncontextlost, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextlost = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncontextlost, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncontextmenu = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextmenu; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncontextmenu, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncontextmenu, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncontextmenu, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncontextmenu = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncontextmenu, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncontextmenu, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextmenu = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncontextmenu, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncontextrestored = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextrestored; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncontextrestored, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncontextrestored, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncontextrestored, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncontextrestored = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncontextrestored, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncontextrestored, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextrestored = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncontextrestored, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncuechange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncuechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncuechange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncuechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncuechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncuechange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncuechange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncuechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncuechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncuechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondblclick = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondblclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondblclick, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondblclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondblclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondblclick = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondblclick, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondblclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondblclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondblclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondrag = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondrag; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondrag, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondrag, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondrag, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondrag = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondrag, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondrag, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondrag = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondrag, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondragend = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondragend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondragend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondragend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondragend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondragend, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondragend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondragend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondragenter = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondragenter, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondragenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondragenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondragenter = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondragenter, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondragenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondragenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondragleave = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondragleave, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondragleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondragleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondragleave = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondragleave, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondragleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondragleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondragover = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragover; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondragover, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondragover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondragover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondragover = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondragover, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondragover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondragover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondragstart = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondragstart, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondragstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondragstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondragstart = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondragstart, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondragstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondragstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondrop = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondrop; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondrop, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondrop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondrop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondrop = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondrop, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondrop, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondrop = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondrop, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ondurationchange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondurationchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ondurationchange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ondurationchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ondurationchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ondurationchange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ondurationchange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ondurationchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondurationchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ondurationchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onemptied = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onemptied; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onemptied, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onemptied, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onemptied, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onemptied = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onemptied, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onemptied, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onemptied = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onemptied, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onended = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onended; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onended, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onended, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onended, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onended = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onended, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onended, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onended = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onended, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onerror, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onerror, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onfocus = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onfocus, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onfocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onfocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onfocus = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onfocus, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onfocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onfocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onformdata = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onformdata; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onformdata, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onformdata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onformdata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onformdata = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onformdata, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onformdata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onformdata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onformdata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oninput = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oninput; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oninput, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oninput, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oninput, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oninput = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oninput, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oninput, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oninput = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oninput, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oninvalid = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oninvalid; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oninvalid, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oninvalid, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oninvalid, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oninvalid = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oninvalid, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oninvalid, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oninvalid = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oninvalid, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onkeydown = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeydown; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onkeydown, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onkeydown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onkeydown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onkeydown = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onkeydown, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onkeydown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeydown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onkeydown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onkeypress = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeypress; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onkeypress, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onkeypress, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onkeypress, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onkeypress = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onkeypress, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onkeypress, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeypress = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onkeypress, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onkeyup = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeyup; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onkeyup, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onkeyup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onkeyup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onkeyup = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onkeyup, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onkeyup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeyup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onkeyup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onload = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onload; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onload, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onload, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onloadeddata = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadeddata; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onloadeddata, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onloadeddata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onloadeddata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onloadeddata = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onloadeddata, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onloadeddata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadeddata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onloadeddata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onloadedmetadata = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadedmetadata; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onloadedmetadata, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onloadedmetadata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onloadedmetadata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onloadedmetadata = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onloadedmetadata, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onloadedmetadata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadedmetadata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onloadedmetadata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onloadstart = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onloadstart, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onloadstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onloadstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onloadstart = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onloadstart, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onloadstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onloadstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmousedown = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousedown; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmousedown, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmousedown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmousedown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmousedown = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmousedown, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmousedown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousedown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmousedown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmouseenter = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmouseenter, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmouseenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmouseenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmouseenter = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmouseenter, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmouseenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmouseenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmouseleave = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmouseleave, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmouseleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmouseleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmouseleave = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmouseleave, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmouseleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmouseleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmousemove = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousemove; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmousemove, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmousemove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmousemove, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmousemove = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmousemove, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmousemove, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousemove = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmousemove, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmouseout = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseout; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmouseout, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmouseout, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmouseout, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmouseout = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmouseout, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmouseout, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseout = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmouseout, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmouseover = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseover; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmouseover, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmouseover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmouseover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmouseover = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmouseover, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmouseover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmouseover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmouseup = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseup; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmouseup, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmouseup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmouseup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmouseup = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmouseup, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmouseup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmouseup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onmousewheel = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousewheel; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onmousewheel, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onmousewheel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onmousewheel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onmousewheel = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onmousewheel, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onmousewheel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousewheel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onmousewheel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpause = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpause; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpause, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpause, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpause, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpause = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpause, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpause, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpause = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpause, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onplay = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onplay, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onplay = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onplay, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onplaying = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onplaying; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onplaying, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onplaying, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onplaying, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onplaying = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onplaying, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onplaying, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onplaying = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onplaying, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onprogress = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onprogress; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onprogress, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onprogress, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onprogress, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onprogress = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onprogress, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onprogress, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onprogress = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onprogress, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onratechange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onratechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onratechange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onratechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onratechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onratechange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onratechange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onratechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onratechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onratechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onreset = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onreset; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onreset, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onreset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onreset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onreset = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onreset, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onreset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onreset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onreset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onresize; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onresize, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onresize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onresize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onresize, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onresize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onresize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onresize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onscroll = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onscroll; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onscroll, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onscroll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onscroll, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onscroll = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onscroll, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onscroll, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onscroll = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onscroll, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onsecuritypolicyviolation = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsecuritypolicyviolation; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onsecuritypolicyviolation, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onsecuritypolicyviolation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onsecuritypolicyviolation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onsecuritypolicyviolation = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onsecuritypolicyviolation, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onsecuritypolicyviolation, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsecuritypolicyviolation = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onsecuritypolicyviolation, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onseeked = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onseeked; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onseeked, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onseeked, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onseeked, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onseeked = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onseeked, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onseeked, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onseeked = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onseeked, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onseeking = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onseeking; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onseeking, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onseeking, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onseeking, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onseeking = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onseeking, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onseeking, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onseeking = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onseeking, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onselect = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselect; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onselect, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onselect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onselect, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onselect = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onselect, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onselect, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselect = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onselect, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onslotchange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onslotchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onslotchange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onslotchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onslotchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onslotchange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onslotchange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onslotchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onslotchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onslotchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onstalled = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onstalled; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onstalled, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onstalled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onstalled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onstalled = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onstalled, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onstalled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onstalled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onstalled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onsubmit = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsubmit; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onsubmit, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onsubmit, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onsubmit, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onsubmit = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onsubmit, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onsubmit, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsubmit = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onsubmit, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onsuspend = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsuspend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onsuspend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onsuspend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onsuspend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onsuspend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onsuspend, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onsuspend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsuspend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onsuspend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ontimeupdate = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontimeupdate; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ontimeupdate, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ontimeupdate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ontimeupdate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ontimeupdate = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ontimeupdate, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ontimeupdate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontimeupdate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ontimeupdate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ontoggle = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontoggle; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ontoggle, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ontoggle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ontoggle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ontoggle = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ontoggle, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ontoggle, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontoggle = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ontoggle, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onvolumechange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onvolumechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onvolumechange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onvolumechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onvolumechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onvolumechange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onvolumechange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onvolumechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onvolumechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onvolumechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onwaiting = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwaiting; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onwaiting, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onwaiting, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onwaiting, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onwaiting = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onwaiting, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onwaiting, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwaiting = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onwaiting, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onwebkitanimationend = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onwebkitanimationend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onwebkitanimationend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onwebkitanimationend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onwebkitanimationend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onwebkitanimationend, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onwebkitanimationend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onwebkitanimationend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onwebkitanimationiteration = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationiteration; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onwebkitanimationiteration, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onwebkitanimationiteration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onwebkitanimationiteration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onwebkitanimationiteration = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onwebkitanimationiteration, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onwebkitanimationiteration, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationiteration = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onwebkitanimationiteration, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onwebkitanimationstart = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onwebkitanimationstart, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onwebkitanimationstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onwebkitanimationstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onwebkitanimationstart = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onwebkitanimationstart, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onwebkitanimationstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onwebkitanimationstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onwebkittransitionend = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkittransitionend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onwebkittransitionend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onwebkittransitionend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onwebkittransitionend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onwebkittransitionend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onwebkittransitionend, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onwebkittransitionend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkittransitionend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onwebkittransitionend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onwheel = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwheel; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onwheel, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onwheel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onwheel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onwheel = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onwheel, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onwheel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwheel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onwheel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onauxclick = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onauxclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onauxclick, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onauxclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onauxclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onauxclick = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onauxclick, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onauxclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onauxclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onauxclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ongotpointercapture = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ongotpointercapture; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ongotpointercapture, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ongotpointercapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ongotpointercapture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ongotpointercapture = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ongotpointercapture, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ongotpointercapture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ongotpointercapture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ongotpointercapture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onlostpointercapture = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onlostpointercapture; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onlostpointercapture, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onlostpointercapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onlostpointercapture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onlostpointercapture = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onlostpointercapture, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onlostpointercapture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onlostpointercapture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onlostpointercapture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointerdown = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerdown; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerdown, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerdown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerdown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerdown = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerdown, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerdown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerdown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerdown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointermove = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointermove; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointermove, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointermove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointermove, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointermove = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointermove, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointermove, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointermove = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointermove, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointerup = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerup; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerup, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerup = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerup, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointercancel = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointercancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointercancel, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointercancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointercancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointercancel = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointercancel, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointercancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointercancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointercancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointerover = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerover; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerover, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerover = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerover, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointerout = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerout; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerout, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerout, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerout, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerout = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerout, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerout, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerout = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerout, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointerenter = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerenter, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerenter = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerenter, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpointerleave = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerleave, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerleave = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerleave, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onselectstart = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselectstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onselectstart, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onselectstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onselectstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onselectstart = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onselectstart, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onselectstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselectstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onselectstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onselectionchange = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselectionchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onselectionchange, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onselectionchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onselectionchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onselectionchange = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onselectionchange, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onselectionchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselectionchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onselectionchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onanimationend = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onanimationend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onanimationend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onanimationend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onanimationend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onanimationend, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onanimationend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onanimationend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onanimationiteration = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationiteration; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onanimationiteration, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onanimationiteration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onanimationiteration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onanimationiteration = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onanimationiteration, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onanimationiteration, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationiteration = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onanimationiteration, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onanimationstart = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onanimationstart, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onanimationstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onanimationstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onanimationstart = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onanimationstart, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onanimationstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onanimationstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ontransitionrun = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionrun; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ontransitionrun, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ontransitionrun, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ontransitionrun, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ontransitionrun = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ontransitionrun, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ontransitionrun, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionrun = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ontransitionrun, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ontransitionstart = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ontransitionstart, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ontransitionstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ontransitionstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ontransitionstart = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ontransitionstart, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ontransitionstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ontransitionstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ontransitionend = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ontransitionend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ontransitionend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ontransitionend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ontransitionend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ontransitionend, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ontransitionend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ontransitionend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_ontransitioncancel = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitioncancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_ontransitioncancel, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_ontransitioncancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_ontransitioncancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_ontransitioncancel = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_ontransitioncancel, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_ontransitioncancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitioncancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_ontransitioncancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncopy = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncopy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncopy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncopy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncopy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncopy = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncopy, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncopy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncopy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncopy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_oncut = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncut; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_oncut, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_oncut, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_oncut, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_oncut = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_oncut, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_oncut, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncut = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_oncut, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onpaste = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpaste; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpaste, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpaste, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpaste, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpaste = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpaste, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpaste, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpaste = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpaste, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_dataset = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dataset; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_dataset, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_dataset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_dataset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_get_nonce = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nonce; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_nonce, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_nonce, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_nonce, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_nonce = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_nonce, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_nonce, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.nonce = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_nonce, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_autofocus = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autofocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_autofocus, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_autofocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_autofocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_autofocus = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_autofocus, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_autofocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autofocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_autofocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_tabIndex = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tabIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_tabIndex, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_tabIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_tabIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_tabIndex = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_tabIndex, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_tabIndex, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.tabIndex = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_tabIndex, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_style = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.style; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_style, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_style, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_style, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_style, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_style, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.style = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_style, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_blur = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.blur.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_blur, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_blur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_blur, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGElement_focus = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.focus.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_focus, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_focus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_focus, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGElement_get_onpointerrawupdate = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerrawupdate; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onpointerrawupdate, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onpointerrawupdate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onpointerrawupdate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onpointerrawupdate = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onpointerrawupdate, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onpointerrawupdate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerrawupdate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onpointerrawupdate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGElement_get_onbeforematch = function () { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforematch; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGElement_get_onbeforematch, 返回object'); break case "function": cbb_wf.console.log('[*] SVGElement_get_onbeforematch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_get_onbeforematch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGElement_set_onbeforematch = function (val) { let r = cbb_wf.checkIllegal(this, "SVGElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGElement_set_onbeforematch, set object'); break case "function": cbb_wf.console.log('[*] SVGElement_set_onbeforematch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforematch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGElement_set_onbeforematch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGComponentTransferFunctionElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGComponentTransferFunctionElement_get_tableValues = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tableValues; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_tableValues, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_tableValues, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_tableValues, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGComponentTransferFunctionElement_get_slope = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.slope; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_slope, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_slope, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_slope, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGComponentTransferFunctionElement_get_intercept = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.intercept; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_intercept, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_intercept, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_intercept, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGComponentTransferFunctionElement_get_amplitude = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.amplitude; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_amplitude, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_amplitude, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_amplitude, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGComponentTransferFunctionElement_get_exponent = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.exponent; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_exponent, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_exponent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_exponent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGComponentTransferFunctionElement_get_offset = function () { let r = cbb_wf.checkIllegal(this, "SVGComponentTransferFunctionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offset; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_offset, 返回object'); break case "function": cbb_wf.console.log('[*] SVGComponentTransferFunctionElement_get_offset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGComponentTransferFunctionElement_get_offset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGClipPathElement_get_clipPathUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGClipPathElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clipPathUnits; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGClipPathElement_get_clipPathUnits, 返回object'); break case "function": cbb_wf.console.log('[*] SVGClipPathElement_get_clipPathUnits, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGClipPathElement_get_clipPathUnits, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGCircleElement_get_cx = function () { let r = cbb_wf.checkIllegal(this, "SVGCircleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cx; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGCircleElement_get_cx, 返回object'); break case "function": cbb_wf.console.log('[*] SVGCircleElement_get_cx, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGCircleElement_get_cx, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGCircleElement_get_cy = function () { let r = cbb_wf.checkIllegal(this, "SVGCircleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cy; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGCircleElement_get_cy, 返回object'); break case "function": cbb_wf.console.log('[*] SVGCircleElement_get_cy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGCircleElement_get_cy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGCircleElement_get_r = function () { let r = cbb_wf.checkIllegal(this, "SVGCircleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.r; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGCircleElement_get_r, 返回object'); break case "function": cbb_wf.console.log('[*] SVGCircleElement_get_r, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGCircleElement_get_r, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_get_targetElement = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.targetElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_get_targetElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_get_targetElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_get_targetElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_get_onbegin = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbegin; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_get_onbegin, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_get_onbegin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_get_onbegin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_set_onbegin = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_set_onbegin, set object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_set_onbegin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbegin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_set_onbegin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGAnimationElement_get_onend = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onend; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_get_onend, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_get_onend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_get_onend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_set_onend = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_set_onend, set object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_set_onend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_set_onend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGAnimationElement_get_onrepeat = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onrepeat; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_get_onrepeat, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_get_onrepeat, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_get_onrepeat, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_set_onrepeat = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_set_onrepeat, set object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_set_onrepeat, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onrepeat = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_set_onrepeat, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGAnimationElement_get_requiredExtensions = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requiredExtensions; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_get_requiredExtensions, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_get_requiredExtensions, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_get_requiredExtensions, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_get_systemLanguage = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.systemLanguage; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_get_systemLanguage, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_get_systemLanguage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_get_systemLanguage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimationElement_beginElement = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.beginElement.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_beginElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_beginElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_beginElement, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimationElement_beginElementAt = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.beginElementAt.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_beginElementAt, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_beginElementAt, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_beginElementAt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimationElement_endElement = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.endElement.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_endElement, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_endElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_endElement, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimationElement_endElementAt = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.endElementAt.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_endElementAt, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_endElementAt, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_endElementAt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimationElement_getCurrentTime = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getCurrentTime.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_getCurrentTime, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_getCurrentTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_getCurrentTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimationElement_getSimpleDuration = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSimpleDuration.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_getSimpleDuration, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_getSimpleDuration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_getSimpleDuration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimationElement_getStartTime = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimationElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getStartTime.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimationElement_getStartTime, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimationElement_getStartTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimationElement_getStartTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAnimatedTransformList_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedTransformList_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedTransformList_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedTransformList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedTransformList_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedString_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedString"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.baseVal; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimatedString_get_baseVal, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimatedString_get_baseVal, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedString_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimatedString_set_baseVal = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimatedString"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] SVGAnimatedString_set_baseVal, set object'); break case "function": cbb_wf.console.log('[*] SVGAnimatedString_set_baseVal, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.baseVal = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedString_set_baseVal, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.SVGAnimatedString_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedString"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.animVal; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAnimatedString_get_animVal, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAnimatedString_get_animVal, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedString_get_animVal, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAnimatedRect_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedRect_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedRect_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedRect_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedPreserveAspectRatio_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedPreserveAspectRatio"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedPreserveAspectRatio_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedPreserveAspectRatio_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedPreserveAspectRatio"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedPreserveAspectRatio_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedNumberList_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedNumberList_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedNumberList_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedNumberList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedNumberList_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedNumber_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedNumber"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedNumber_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedNumber_set_baseVal = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimatedNumber"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'baseVal', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedNumber_set_baseVal, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAnimatedNumber_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedNumber"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedNumber_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedLengthList_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedLengthList_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedLengthList_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedLengthList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedLengthList_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedLength_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedLength_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedLength_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedLength"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedLength_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedInteger_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedInteger"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedInteger_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedInteger_set_baseVal = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimatedInteger"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'baseVal', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedInteger_set_baseVal, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAnimatedInteger_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedInteger"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedInteger_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedEnumeration_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedEnumeration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedEnumeration_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedEnumeration_set_baseVal = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimatedEnumeration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'baseVal', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedEnumeration_set_baseVal, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAnimatedEnumeration_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedEnumeration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedEnumeration_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedBoolean_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedBoolean"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedBoolean_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedBoolean_set_baseVal = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAnimatedBoolean"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'baseVal', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedBoolean_set_baseVal, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAnimatedBoolean_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedBoolean"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedBoolean_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedAngle_get_baseVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedAngle_get_baseVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAnimatedAngle_get_animVal = function () { let r = cbb_wf.checkIllegal(this, "SVGAnimatedAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animVal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAnimatedAngle_get_animVal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAngle_get_unitType = function () { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unitType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_get_unitType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAngle_get_value = function () { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAngle_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'value', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_set_value, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAngle_get_valueInSpecifiedUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'valueInSpecifiedUnits'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_get_valueInSpecifiedUnits, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAngle_set_valueInSpecifiedUnits = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'valueInSpecifiedUnits', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_set_valueInSpecifiedUnits, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAngle_get_valueAsString = function () { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'valueAsString'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_get_valueAsString, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SVGAngle_set_valueAsString = function (val) { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'valueAsString', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_set_valueAsString, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SVGAngle_convertToSpecifiedUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_convertToSpecifiedUnits, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAngle_newValueSpecifiedUnits = function () { let r = cbb_wf.checkIllegal(this, "SVGAngle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAngle_newValueSpecifiedUnits, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SVGAElement_get_target = function () { let r = cbb_wf.checkIllegal(this, "SVGAElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAElement_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAElement_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAElement_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.SVGAElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "SVGAElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] SVGAElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] SVGAElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SVGAElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Response_get_type = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_url = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_redirected = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirected'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_redirected, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_status = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_ok = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ok'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_ok, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_statusText = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'statusText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_statusText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_headers = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'headers'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_headers, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_body = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'body'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_body, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_get_bodyUsed = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bodyUsed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_get_bodyUsed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Response_arrayBuffer = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_arrayBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Response_blob = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_blob, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Response_clone = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_clone, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Response_formData = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_formData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Response_json = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_json, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Response_text = function () { let r = cbb_wf.checkIllegal(this, "Response"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Response_text, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ResizeObserverSize_get_inlineSize = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverSize"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inlineSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverSize_get_inlineSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserverSize_get_blockSize = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverSize"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'blockSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverSize_get_blockSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserverEntry_get_target = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'target'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverEntry_get_target, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserverEntry_get_contentRect = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'contentRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverEntry_get_contentRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserverEntry_get_contentBoxSize = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'contentBoxSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverEntry_get_contentBoxSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserverEntry_get_borderBoxSize = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'borderBoxSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverEntry_get_borderBoxSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserverEntry_get_devicePixelContentBoxSize = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'devicePixelContentBoxSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserverEntry_get_devicePixelContentBoxSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ResizeObserver_disconnect = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserver_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ResizeObserver_observe = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserver_observe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ResizeObserver_unobserve = function () { let r = cbb_wf.checkIllegal(this, "ResizeObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ResizeObserver_unobserve, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Request_get_method = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'method'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_method, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_url = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_headers = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'headers'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_headers, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_destination = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'destination'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_destination, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_referrer = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'referrer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_referrer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'referrerPolicy'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_mode = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_mode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_credentials = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'credentials'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_credentials, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_cache = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cache'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_cache, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_redirect = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_redirect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_integrity = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'integrity'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_integrity, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_keepalive = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keepalive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_keepalive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_signal = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'signal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_signal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_isHistoryNavigation = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isHistoryNavigation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_isHistoryNavigation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_get_bodyUsed = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bodyUsed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_get_bodyUsed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Request_arrayBuffer = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_arrayBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Request_blob = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_blob, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Request_clone = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_clone, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Request_formData = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_formData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Request_json = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_json, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Request_text = function () { let r = cbb_wf.checkIllegal(this, "Request"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Request_text, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReportingObserver_disconnect = function () { let r = cbb_wf.checkIllegal(this, "ReportingObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReportingObserver_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReportingObserver_observe = function () { let r = cbb_wf.checkIllegal(this, "ReportingObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReportingObserver_observe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReportingObserver_takeRecords = function () { let r = cbb_wf.checkIllegal(this, "ReportingObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReportingObserver_takeRecords, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamDefaultReader_read = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultReader_read, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamDefaultReader_releaseLock = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultReader_releaseLock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamDefaultReader_get_closed = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultReader_get_closed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableStreamDefaultReader_cancel = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultReader_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamDefaultController_get_desiredSize = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'desiredSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultController_get_desiredSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableStreamDefaultController_close = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultController_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamDefaultController_enqueue = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultController_enqueue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamDefaultController_error = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamDefaultController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamDefaultController_error, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamBYOBRequest_get_view = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'view'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBRequest_get_view, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableStreamBYOBRequest_respond = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBRequest_respond, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamBYOBRequest_respondWithNewView = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBRequest_respondWithNewView, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamBYOBReader_read = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBReader_read, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamBYOBReader_releaseLock = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBReader_releaseLock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStreamBYOBReader_get_closed = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBReader_get_closed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableStreamBYOBReader_cancel = function () { let r = cbb_wf.checkIllegal(this, "ReadableStreamBYOBReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStreamBYOBReader_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStream_get_locked = function () { let r = cbb_wf.checkIllegal(this, "ReadableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'locked'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStream_get_locked, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableStream_cancel = function () { let r = cbb_wf.checkIllegal(this, "ReadableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStream_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStream_getReader = function () { let r = cbb_wf.checkIllegal(this, "ReadableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStream_getReader, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStream_pipeThrough = function () { let r = cbb_wf.checkIllegal(this, "ReadableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStream_pipeThrough, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStream_pipeTo = function () { let r = cbb_wf.checkIllegal(this, "ReadableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStream_pipeTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableStream_tee = function () { let r = cbb_wf.checkIllegal(this, "ReadableStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableStream_tee, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableByteStreamController_get_byobRequest = function () { let r = cbb_wf.checkIllegal(this, "ReadableByteStreamController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'byobRequest'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableByteStreamController_get_byobRequest, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableByteStreamController_get_desiredSize = function () { let r = cbb_wf.checkIllegal(this, "ReadableByteStreamController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'desiredSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableByteStreamController_get_desiredSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ReadableByteStreamController_close = function () { let r = cbb_wf.checkIllegal(this, "ReadableByteStreamController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableByteStreamController_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableByteStreamController_enqueue = function () { let r = cbb_wf.checkIllegal(this, "ReadableByteStreamController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableByteStreamController_enqueue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ReadableByteStreamController_error = function () { let r = cbb_wf.checkIllegal(this, "ReadableByteStreamController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ReadableByteStreamController_error, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_get_commonAncestorContainer = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.commonAncestorContainer; switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_get_commonAncestorContainer, 返回object'); break case "function": cbb_wf.console.log('[*] Range_get_commonAncestorContainer, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_get_commonAncestorContainer, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Range_cloneContents = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cloneContents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_cloneContents, 返回object'); break case "function": cbb_wf.console.log('[*] Range_cloneContents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_cloneContents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_cloneRange = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cloneRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_cloneRange, 返回object'); break case "function": cbb_wf.console.log('[*] Range_cloneRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_cloneRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_collapse = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.collapse.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_collapse, 返回object'); break case "function": cbb_wf.console.log('[*] Range_collapse, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_collapse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_compareBoundaryPoints = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compareBoundaryPoints.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_compareBoundaryPoints, 返回object'); break case "function": cbb_wf.console.log('[*] Range_compareBoundaryPoints, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_compareBoundaryPoints, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_comparePoint = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.comparePoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_comparePoint, 返回object'); break case "function": cbb_wf.console.log('[*] Range_comparePoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_comparePoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_createContextualFragment = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createContextualFragment.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_createContextualFragment, 返回object'); break case "function": cbb_wf.console.log('[*] Range_createContextualFragment, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_createContextualFragment, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_deleteContents = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteContents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_deleteContents, 返回object'); break case "function": cbb_wf.console.log('[*] Range_deleteContents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_deleteContents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_detach = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.detach.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_detach, 返回object'); break case "function": cbb_wf.console.log('[*] Range_detach, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_detach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_expand = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.expand.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_expand, 返回object'); break case "function": cbb_wf.console.log('[*] Range_expand, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_expand, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_extractContents = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.extractContents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_extractContents, 返回object'); break case "function": cbb_wf.console.log('[*] Range_extractContents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_extractContents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_getBoundingClientRect = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getBoundingClientRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_getBoundingClientRect, 返回object'); break case "function": cbb_wf.console.log('[*] Range_getBoundingClientRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_getBoundingClientRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_getClientRects = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getClientRects.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_getClientRects, 返回object'); break case "function": cbb_wf.console.log('[*] Range_getClientRects, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_getClientRects, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_insertNode = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_insertNode, 返回object'); break case "function": cbb_wf.console.log('[*] Range_insertNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_insertNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_intersectsNode = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.intersectsNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_intersectsNode, 返回object'); break case "function": cbb_wf.console.log('[*] Range_intersectsNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_intersectsNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_isPointInRange = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isPointInRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_isPointInRange, 返回object'); break case "function": cbb_wf.console.log('[*] Range_isPointInRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_isPointInRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_selectNode = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_selectNode, 返回object'); break case "function": cbb_wf.console.log('[*] Range_selectNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_selectNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_selectNodeContents = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectNodeContents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_selectNodeContents, 返回object'); break case "function": cbb_wf.console.log('[*] Range_selectNodeContents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_selectNodeContents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_setEnd = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setEnd.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_setEnd, 返回object'); break case "function": cbb_wf.console.log('[*] Range_setEnd, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_setEnd, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_setEndAfter = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setEndAfter.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_setEndAfter, 返回object'); break case "function": cbb_wf.console.log('[*] Range_setEndAfter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_setEndAfter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_setEndBefore = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setEndBefore.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_setEndBefore, 返回object'); break case "function": cbb_wf.console.log('[*] Range_setEndBefore, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_setEndBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_setStart = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setStart.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_setStart, 返回object'); break case "function": cbb_wf.console.log('[*] Range_setStart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_setStart, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_setStartAfter = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setStartAfter.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_setStartAfter, 返回object'); break case "function": cbb_wf.console.log('[*] Range_setStartAfter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_setStartAfter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_setStartBefore = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setStartBefore.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_setStartBefore, 返回object'); break case "function": cbb_wf.console.log('[*] Range_setStartBefore, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_setStartBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_surroundContents = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.surroundContents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_surroundContents, 返回object'); break case "function": cbb_wf.console.log('[*] Range_surroundContents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_surroundContents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Range_toString = function () { let r = cbb_wf.checkIllegal(this, "Range"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Range_toString, 返回object'); break case "function": cbb_wf.console.log('[*] Range_toString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Range_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RadioNodeList_get_value = function () { let r = cbb_wf.checkIllegal(this, "RadioNodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] RadioNodeList_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] RadioNodeList_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RadioNodeList_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.RadioNodeList_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "RadioNodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] RadioNodeList_set_value, set object'); break case "function": cbb_wf.console.log('[*] RadioNodeList_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RadioNodeList_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.RTCTrackEvent_get_receiver = function () { let r = cbb_wf.checkIllegal(this, "RTCTrackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'receiver'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCTrackEvent_get_receiver, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCTrackEvent_get_track = function () { let r = cbb_wf.checkIllegal(this, "RTCTrackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCTrackEvent_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCTrackEvent_get_streams = function () { let r = cbb_wf.checkIllegal(this, "RTCTrackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'streams'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCTrackEvent_get_streams, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCTrackEvent_get_transceiver = function () { let r = cbb_wf.checkIllegal(this, "RTCTrackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transceiver'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCTrackEvent_get_transceiver, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCStatsReport_get_size = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCStatsReport_entries = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCStatsReport_forEach = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCStatsReport_get = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCStatsReport_has = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCStatsReport_keys = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCStatsReport_values = function () { let r = cbb_wf.checkIllegal(this, "RTCStatsReport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCStatsReport_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCSessionDescription_get_type = function () { let r = cbb_wf.checkIllegal(this, "RTCSessionDescription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSessionDescription_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSessionDescription_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "RTCSessionDescription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'type', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSessionDescription_set_type, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCSessionDescription_get_sdp = function () { let r = cbb_wf.checkIllegal(this, "RTCSessionDescription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sdp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSessionDescription_get_sdp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSessionDescription_set_sdp = function (val) { let r = cbb_wf.checkIllegal(this, "RTCSessionDescription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'sdp', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSessionDescription_set_sdp, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCSessionDescription_toJSON = function () { let r = cbb_wf.checkIllegal(this, "RTCSessionDescription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSessionDescription_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCSctpTransport_get_transport = function () { let r = cbb_wf.checkIllegal(this, "RTCSctpTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSctpTransport_get_transport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSctpTransport_get_state = function () { let r = cbb_wf.checkIllegal(this, "RTCSctpTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSctpTransport_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSctpTransport_get_maxMessageSize = function () { let r = cbb_wf.checkIllegal(this, "RTCSctpTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxMessageSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSctpTransport_get_maxMessageSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSctpTransport_get_maxChannels = function () { let r = cbb_wf.checkIllegal(this, "RTCSctpTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxChannels'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSctpTransport_get_maxChannels, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSctpTransport_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCSctpTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSctpTransport_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCSctpTransport_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCSctpTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCSctpTransport_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCRtpTransceiver_get_mid = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_get_mid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpTransceiver_get_sender = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sender'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_get_sender, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpTransceiver_get_receiver = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'receiver'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_get_receiver, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpTransceiver_get_stopped = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'stopped'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_get_stopped, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpTransceiver_get_direction = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'direction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_get_direction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpTransceiver_set_direction = function (val) { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'direction', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_set_direction, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCRtpTransceiver_get_currentDirection = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentDirection'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_get_currentDirection, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpTransceiver_setCodecPreferences = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_setCodecPreferences, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpTransceiver_stop = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpTransceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpTransceiver_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpSender_get_track = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpSender_get_transport = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_get_transport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpSender_get_rtcpTransport = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rtcpTransport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_get_rtcpTransport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpSender_get_dtmf = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dtmf'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_get_dtmf, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpSender_createEncodedStreams = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_createEncodedStreams, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpSender_getParameters = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_getParameters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpSender_getStats = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_getStats, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpSender_replaceTrack = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_replaceTrack, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpSender_setParameters = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_setParameters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpSender_setStreams = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpSender_setStreams, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpReceiver_get_track = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpReceiver_get_transport = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_get_transport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpReceiver_get_rtcpTransport = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rtcpTransport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_get_rtcpTransport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpReceiver_get_playoutDelayHint = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'playoutDelayHint'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_get_playoutDelayHint, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCRtpReceiver_set_playoutDelayHint = function (val) { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'playoutDelayHint', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_set_playoutDelayHint, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCRtpReceiver_createEncodedStreams = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_createEncodedStreams, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpReceiver_getContributingSources = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_getContributingSources, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpReceiver_getParameters = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_getParameters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpReceiver_getStats = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_getStats, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCRtpReceiver_getSynchronizationSources = function () { let r = cbb_wf.checkIllegal(this, "RTCRtpReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCRtpReceiver_getSynchronizationSources, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnectionIceEvent_get_candidate = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'candidate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceEvent_get_candidate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnectionIceErrorEvent_get_address = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'address'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceErrorEvent_get_address, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnectionIceErrorEvent_get_port = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceErrorEvent_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnectionIceErrorEvent_get_hostCandidate = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hostCandidate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceErrorEvent_get_hostCandidate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnectionIceErrorEvent_get_url = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceErrorEvent_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnectionIceErrorEvent_get_errorCode = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'errorCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceErrorEvent_get_errorCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnectionIceErrorEvent_get_errorText = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnectionIceErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'errorText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnectionIceErrorEvent_get_errorText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_localDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'localDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_localDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_currentLocalDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentLocalDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_currentLocalDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_pendingLocalDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pendingLocalDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_pendingLocalDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_remoteDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'remoteDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_remoteDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_currentRemoteDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentRemoteDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_currentRemoteDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_pendingRemoteDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pendingRemoteDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_pendingRemoteDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_signalingState = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'signalingState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_signalingState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_iceGatheringState = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'iceGatheringState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_iceGatheringState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_iceConnectionState = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'iceConnectionState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_iceConnectionState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_connectionState = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connectionState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_connectionState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_canTrickleIceCandidates = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canTrickleIceCandidates'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_canTrickleIceCandidates, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_onnegotiationneeded = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onnegotiationneeded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onnegotiationneeded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onnegotiationneeded = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onnegotiationneeded', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onnegotiationneeded, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onicecandidate = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onicecandidate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onicecandidate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onicecandidate = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onicecandidate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onicecandidate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onsignalingstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsignalingstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onsignalingstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onsignalingstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsignalingstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onsignalingstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_oniceconnectionstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oniceconnectionstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_oniceconnectionstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_oniceconnectionstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oniceconnectionstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_oniceconnectionstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onconnectionstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnectionstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onconnectionstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onconnectionstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnectionstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onconnectionstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onicegatheringstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onicegatheringstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onicegatheringstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onicegatheringstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onicegatheringstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onicegatheringstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onicecandidateerror = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onicecandidateerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onicecandidateerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onicecandidateerror = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onicecandidateerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onicecandidateerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_ontrack = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ontrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_ontrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_ontrack = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ontrack', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_ontrack, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_sctp = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sctp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_sctp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_get_ondatachannel = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondatachannel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_ondatachannel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_ondatachannel = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondatachannel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_ondatachannel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onaddstream = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaddstream'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onaddstream, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onaddstream = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaddstream', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onaddstream, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_get_onremovestream = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onremovestream'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_get_onremovestream, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCPeerConnection_set_onremovestream = function (val) { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onremovestream', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_set_onremovestream, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCPeerConnection_addIceCandidate = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_addIceCandidate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_addStream = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_addStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_addTrack = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_addTrack, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_addTransceiver = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_addTransceiver, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_close = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_createAnswer = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_createAnswer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_createDTMFSender = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_createDTMFSender, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_createDataChannel = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_createDataChannel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_createOffer = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_createOffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getConfiguration = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getConfiguration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getLocalStreams = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getLocalStreams, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getReceivers = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getReceivers, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getRemoteStreams = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getRemoteStreams, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getSenders = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getSenders, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getStats = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getStats, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_getTransceivers = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_getTransceivers, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_removeStream = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_removeStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_removeTrack = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_removeTrack, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_restartIce = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_restartIce, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_setConfiguration = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_setConfiguration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_setLocalDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_setLocalDescription, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCPeerConnection_setRemoteDescription = function () { let r = cbb_wf.checkIllegal(this, "RTCPeerConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCPeerConnection_setRemoteDescription, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCIceCandidate_get_candidate = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'candidate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_candidate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_sdpMid = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sdpMid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_sdpMid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_sdpMLineIndex = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sdpMLineIndex'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_sdpMLineIndex, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_foundation = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'foundation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_foundation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_component = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'component'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_component, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_priority = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'priority'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_priority, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_address = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'address'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_address, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_protocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_port = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_type = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_tcpType = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tcpType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_tcpType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_relatedAddress = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'relatedAddress'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_relatedAddress, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_relatedPort = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'relatedPort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_relatedPort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_get_usernameFragment = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'usernameFragment'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_get_usernameFragment, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceCandidate_toJSON = function () { let r = cbb_wf.checkIllegal(this, "RTCIceCandidate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceCandidate_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCErrorEvent_get_error = function () { let r = cbb_wf.checkIllegal(this, "RTCErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCErrorEvent_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCError_get_errorDetail = function () { let r = cbb_wf.checkIllegal(this, "RTCError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'errorDetail'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCError_get_errorDetail, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCError_get_sdpLineNumber = function () { let r = cbb_wf.checkIllegal(this, "RTCError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sdpLineNumber'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCError_get_sdpLineNumber, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCError_get_httpRequestStatusCode = function () { let r = cbb_wf.checkIllegal(this, "RTCError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'httpRequestStatusCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCError_get_httpRequestStatusCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCError_get_sctpCauseCode = function () { let r = cbb_wf.checkIllegal(this, "RTCError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sctpCauseCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCError_get_sctpCauseCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCError_get_receivedAlert = function () { let r = cbb_wf.checkIllegal(this, "RTCError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'receivedAlert'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCError_get_receivedAlert, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCError_get_sentAlert = function () { let r = cbb_wf.checkIllegal(this, "RTCError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sentAlert'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCError_get_sentAlert, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCEncodedVideoFrame_get_type = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedVideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedVideoFrame_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCEncodedVideoFrame_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedVideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedVideoFrame_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCEncodedVideoFrame_get_data = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedVideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedVideoFrame_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCEncodedVideoFrame_set_data = function (val) { let r = cbb_wf.checkIllegal(this, "RTCEncodedVideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'data', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedVideoFrame_set_data, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCEncodedVideoFrame_getMetadata = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedVideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedVideoFrame_getMetadata, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCEncodedVideoFrame_toString = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedVideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedVideoFrame_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCEncodedAudioFrame_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedAudioFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedAudioFrame_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCEncodedAudioFrame_get_data = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedAudioFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedAudioFrame_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCEncodedAudioFrame_set_data = function (val) { let r = cbb_wf.checkIllegal(this, "RTCEncodedAudioFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'data', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedAudioFrame_set_data, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCEncodedAudioFrame_getMetadata = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedAudioFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedAudioFrame_getMetadata, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCEncodedAudioFrame_toString = function () { let r = cbb_wf.checkIllegal(this, "RTCEncodedAudioFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCEncodedAudioFrame_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCDtlsTransport_get_iceTransport = function () { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'iceTransport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_get_iceTransport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDtlsTransport_get_state = function () { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDtlsTransport_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDtlsTransport_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDtlsTransport_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDtlsTransport_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDtlsTransport_getRemoteCertificates = function () { let r = cbb_wf.checkIllegal(this, "RTCDtlsTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDtlsTransport_getRemoteCertificates, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCDataChannelEvent_get_channel = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannelEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'channel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannelEvent_get_channel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_label = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'label'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_label, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_ordered = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ordered'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_ordered, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_maxPacketLifeTime = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxPacketLifeTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_maxPacketLifeTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_maxRetransmits = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxRetransmits'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_maxRetransmits, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_protocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_negotiated = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'negotiated'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_negotiated, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_id = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_bufferedAmount = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bufferedAmount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_bufferedAmount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_get_bufferedAmountLowThreshold = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bufferedAmountLowThreshold'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_bufferedAmountLowThreshold, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_bufferedAmountLowThreshold = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'bufferedAmountLowThreshold', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_bufferedAmountLowThreshold, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_onopen = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onopen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_onopen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_onopen = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onopen', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_onopen, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_onbufferedamountlow = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onbufferedamountlow'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_onbufferedamountlow, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_onbufferedamountlow = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onbufferedamountlow', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_onbufferedamountlow, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_onclosing = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclosing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_onclosing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_onclosing = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclosing', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_onclosing, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_onclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_onclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_binaryType = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'binaryType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_binaryType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_set_binaryType = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'binaryType', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_set_binaryType, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDataChannel_get_reliable = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reliable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_get_reliable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDataChannel_close = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCDataChannel_send = function () { let r = cbb_wf.checkIllegal(this, "RTCDataChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDataChannel_send, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCDTMFToneChangeEvent_get_tone = function () { let r = cbb_wf.checkIllegal(this, "RTCDTMFToneChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tone'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDTMFToneChangeEvent_get_tone, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDTMFSender_get_ontonechange = function () { let r = cbb_wf.checkIllegal(this, "RTCDTMFSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ontonechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDTMFSender_get_ontonechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDTMFSender_set_ontonechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCDTMFSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ontonechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDTMFSender_set_ontonechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCDTMFSender_get_canInsertDTMF = function () { let r = cbb_wf.checkIllegal(this, "RTCDTMFSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canInsertDTMF'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDTMFSender_get_canInsertDTMF, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDTMFSender_get_toneBuffer = function () { let r = cbb_wf.checkIllegal(this, "RTCDTMFSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'toneBuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDTMFSender_get_toneBuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCDTMFSender_insertDTMF = function () { let r = cbb_wf.checkIllegal(this, "RTCDTMFSender"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCDTMFSender_insertDTMF, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCCertificate_get_expires = function () { let r = cbb_wf.checkIllegal(this, "RTCCertificate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'expires'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCCertificate_get_expires, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCCertificate_getFingerprints = function () { let r = cbb_wf.checkIllegal(this, "RTCCertificate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCCertificate_getFingerprints, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PromiseRejectionEvent_get_promise = function () { let r = cbb_wf.checkIllegal(this, "PromiseRejectionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'promise'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PromiseRejectionEvent_get_promise, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PromiseRejectionEvent_get_reason = function () { let r = cbb_wf.checkIllegal(this, "PromiseRejectionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reason'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PromiseRejectionEvent_get_reason, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ProgressEvent_get_lengthComputable = function () { let r = cbb_wf.checkIllegal(this, "ProgressEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lengthComputable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ProgressEvent_get_lengthComputable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ProgressEvent_get_loaded = function () { let r = cbb_wf.checkIllegal(this, "ProgressEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loaded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ProgressEvent_get_loaded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ProgressEvent_get_total = function () { let r = cbb_wf.checkIllegal(this, "ProgressEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'total'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ProgressEvent_get_total, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ProcessingInstruction_get_target = function () { let r = cbb_wf.checkIllegal(this, "ProcessingInstruction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] ProcessingInstruction_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] ProcessingInstruction_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ProcessingInstruction_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ProcessingInstruction_get_sheet = function () { let r = cbb_wf.checkIllegal(this, "ProcessingInstruction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] ProcessingInstruction_get_sheet, 返回object'); break case "function": cbb_wf.console.log('[*] ProcessingInstruction_get_sheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ProcessingInstruction_get_sheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.PopStateEvent_get_state = function () { let r = cbb_wf.checkIllegal(this, "PopStateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PopStateEvent_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_pointerId = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pointerId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_pointerId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_width = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_height = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_pressure = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pressure'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_pressure, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_tiltX = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tiltX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_tiltX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_tiltY = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tiltY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_tiltY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_azimuthAngle = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'azimuthAngle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_azimuthAngle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_altitudeAngle = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'altitudeAngle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_altitudeAngle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_tangentialPressure = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tangentialPressure'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_tangentialPressure, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_twist = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'twist'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_twist, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_pointerType = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pointerType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_pointerType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_get_isPrimary = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isPrimary'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_get_isPrimary, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PointerEvent_getCoalescedEvents = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_getCoalescedEvents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PointerEvent_getPredictedEvents = function () { let r = cbb_wf.checkIllegal(this, "PointerEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PointerEvent_getPredictedEvents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PluginArray_get_length = function () { let r = cbb_wf.checkIllegal(this, "PluginArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PluginArray_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PluginArray_item = function () { let r = cbb_wf.checkIllegal(this, "PluginArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PluginArray_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PluginArray_namedItem = function () { let r = cbb_wf.checkIllegal(this, "PluginArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PluginArray_namedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PluginArray_refresh = function () { let r = cbb_wf.checkIllegal(this, "PluginArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PluginArray_refresh, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Plugin_get_name = function () { let r = cbb_wf.checkIllegal(this, "Plugin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Plugin_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Plugin_get_filename = function () { let r = cbb_wf.checkIllegal(this, "Plugin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'filename'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Plugin_get_filename, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Plugin_get_description = function () { let r = cbb_wf.checkIllegal(this, "Plugin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'description'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Plugin_get_description, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Plugin_get_length = function () { let r = cbb_wf.checkIllegal(this, "Plugin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Plugin_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Plugin_item = function () { let r = cbb_wf.checkIllegal(this, "Plugin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Plugin_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Plugin_namedItem = function () { let r = cbb_wf.checkIllegal(this, "Plugin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Plugin_namedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceTiming_get_navigationStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigationStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_navigationStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_unloadEventStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unloadEventStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_unloadEventStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_unloadEventEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unloadEventEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_unloadEventEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_redirectStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirectStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_redirectStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_redirectEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirectEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_redirectEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_fetchStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fetchStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_fetchStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domainLookupStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domainLookupStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domainLookupStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domainLookupEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domainLookupEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domainLookupEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_connectStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connectStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_connectStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_connectEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connectEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_connectEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_secureConnectionStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'secureConnectionStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_secureConnectionStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_requestStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'requestStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_requestStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_responseStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_responseStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_responseEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_responseEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domLoading = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domLoading'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domLoading, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domInteractive = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domInteractive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domInteractive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domContentLoadedEventStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domContentLoadedEventStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domContentLoadedEventStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domContentLoadedEventEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domContentLoadedEventEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domContentLoadedEventEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_domComplete = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domComplete'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_domComplete, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_loadEventStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loadEventStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_loadEventStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_get_loadEventEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loadEventEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_get_loadEventEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceServerTiming_get_name = function () { let r = cbb_wf.checkIllegal(this, "PerformanceServerTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceServerTiming_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceServerTiming_get_duration = function () { let r = cbb_wf.checkIllegal(this, "PerformanceServerTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceServerTiming_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceServerTiming_get_description = function () { let r = cbb_wf.checkIllegal(this, "PerformanceServerTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'description'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceServerTiming_get_description, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceServerTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceServerTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceServerTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceResourceTiming_get_initiatorType = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'initiatorType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_initiatorType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_nextHopProtocol = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'nextHopProtocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_nextHopProtocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_workerStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'workerStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_workerStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_redirectStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirectStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_redirectStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_redirectEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirectEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_redirectEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_fetchStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fetchStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_fetchStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_domainLookupStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domainLookupStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_domainLookupStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_domainLookupEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domainLookupEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_domainLookupEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_connectStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connectStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_connectStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_connectEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connectEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_connectEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_secureConnectionStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'secureConnectionStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_secureConnectionStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_requestStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'requestStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_requestStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_responseStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_responseStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_responseEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_responseEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_transferSize = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transferSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_transferSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_encodedBodySize = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encodedBodySize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_encodedBodySize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_decodedBodySize = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'decodedBodySize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_decodedBodySize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_get_serverTiming = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'serverTiming'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_get_serverTiming, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceResourceTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceResourceTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceResourceTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceObserverEntryList_getEntries = function () { let r = cbb_wf.checkIllegal(this, "PerformanceObserverEntryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceObserverEntryList_getEntries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceObserverEntryList_getEntriesByName = function () { let r = cbb_wf.checkIllegal(this, "PerformanceObserverEntryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceObserverEntryList_getEntriesByName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceObserverEntryList_getEntriesByType = function () { let r = cbb_wf.checkIllegal(this, "PerformanceObserverEntryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceObserverEntryList_getEntriesByType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceObserver_disconnect = function () { let r = cbb_wf.checkIllegal(this, "PerformanceObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceObserver_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceObserver_observe = function () { let r = cbb_wf.checkIllegal(this, "PerformanceObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceObserver_observe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceObserver_takeRecords = function () { let r = cbb_wf.checkIllegal(this, "PerformanceObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceObserver_takeRecords, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceNavigationTiming_get_unloadEventStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unloadEventStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_unloadEventStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_unloadEventEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unloadEventEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_unloadEventEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_domInteractive = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domInteractive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_domInteractive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_domContentLoadedEventStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domContentLoadedEventStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_domContentLoadedEventStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_domContentLoadedEventEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domContentLoadedEventEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_domContentLoadedEventEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_domComplete = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domComplete'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_domComplete, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_loadEventStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loadEventStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_loadEventStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_loadEventEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loadEventEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_loadEventEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_type = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_get_redirectCount = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirectCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_get_redirectCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigationTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigationTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigationTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceNavigation_get_type = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigation_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigation_get_redirectCount = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'redirectCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigation_get_redirectCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceNavigation_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceNavigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceNavigation_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceMeasure_get_detail = function () { let r = cbb_wf.checkIllegal(this, "PerformanceMeasure"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detail'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceMeasure_get_detail, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceMark_get_detail = function () { let r = cbb_wf.checkIllegal(this, "PerformanceMark"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detail'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceMark_get_detail, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongTaskTiming_get_attribution = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongTaskTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'attribution'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceLongTaskTiming_get_attribution, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongTaskTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongTaskTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceLongTaskTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceEventTiming_get_processingStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEventTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'processingStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEventTiming_get_processingStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEventTiming_get_processingEnd = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEventTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'processingEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEventTiming_get_processingEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEventTiming_get_cancelable = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEventTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cancelable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEventTiming_get_cancelable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEventTiming_get_target = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEventTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'target'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEventTiming_get_target, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEventTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEventTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEventTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceEventTiming_get_interactionId = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEventTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interactionId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEventTiming_get_interactionId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEntry_get_name = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEntry_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEntry_get_entryType = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'entryType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEntry_get_entryType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEntry_get_startTime = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'startTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEntry_get_startTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEntry_get_duration = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEntry_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceEntry_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceEntry_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceElementTiming_get_renderTime = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'renderTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_renderTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_loadTime = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loadTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_loadTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_intersectionRect = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'intersectionRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_intersectionRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_identifier = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'identifier'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_identifier, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_naturalWidth = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'naturalWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_naturalWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_naturalHeight = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'naturalHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_naturalHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_id = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_element = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'element'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_element, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_get_url = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceElementTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceElementTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PerformanceElementTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_get_timeOrigin = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timeOrigin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_get_timeOrigin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Performance_get_onresourcetimingbufferfull = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onresourcetimingbufferfull'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_get_onresourcetimingbufferfull, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Performance_set_onresourcetimingbufferfull = function (val) { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onresourcetimingbufferfull', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_set_onresourcetimingbufferfull, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Performance_clearMarks = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_clearMarks, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_clearMeasures = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_clearMeasures, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_clearResourceTimings = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_clearResourceTimings, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_getEntries = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_getEntries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_getEntriesByName = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_getEntriesByName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_getEntriesByType = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_getEntriesByType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_mark = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_mark, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_measure = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_measure, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_now = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_now, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_setResourceTimingBufferSize = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_setResourceTimingBufferSize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_toJSON = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Performance_get_timing = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_get_timing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Performance_get_navigation = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_get_navigation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Performance_get_memory = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'memory'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_get_memory, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Performance_get_eventCounts = function () { let r = cbb_wf.checkIllegal(this, "Performance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'eventCounts'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Performance_get_eventCounts, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Path2D_addPath = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_addPath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_roundRect = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_roundRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_arc = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_arc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_arcTo = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_arcTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_bezierCurveTo = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_bezierCurveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_closePath = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_closePath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_ellipse = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_ellipse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_lineTo = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_lineTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_moveTo = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_moveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_quadraticCurveTo = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_quadraticCurveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Path2D_rect = function () { let r = cbb_wf.checkIllegal(this, "Path2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Path2D_rect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PannerNode_get_panningModel = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'panningModel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_panningModel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_panningModel = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'panningModel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_panningModel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_positionX = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_positionX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_get_positionY = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_positionY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_get_positionZ = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionZ'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_positionZ, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_get_orientationX = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'orientationX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_orientationX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_get_orientationY = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'orientationY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_orientationY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_get_orientationZ = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'orientationZ'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_orientationZ, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_get_distanceModel = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'distanceModel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_distanceModel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_distanceModel = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'distanceModel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_distanceModel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_refDistance = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'refDistance'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_refDistance, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_refDistance = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'refDistance', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_refDistance, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_maxDistance = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxDistance'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_maxDistance, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_maxDistance = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxDistance', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_maxDistance, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_rolloffFactor = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rolloffFactor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_rolloffFactor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_rolloffFactor = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'rolloffFactor', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_rolloffFactor, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_coneInnerAngle = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'coneInnerAngle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_coneInnerAngle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_coneInnerAngle = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'coneInnerAngle', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_coneInnerAngle, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_coneOuterAngle = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'coneOuterAngle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_coneOuterAngle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_coneOuterAngle = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'coneOuterAngle', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_coneOuterAngle, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_get_coneOuterGain = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'coneOuterGain'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_get_coneOuterGain, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PannerNode_set_coneOuterGain = function (val) { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'coneOuterGain', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_set_coneOuterGain, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PannerNode_setOrientation = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_setOrientation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PannerNode_setPosition = function () { let r = cbb_wf.checkIllegal(this, "PannerNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PannerNode_setPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PageTransitionEvent_get_persisted = function () { let r = cbb_wf.checkIllegal(this, "PageTransitionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'persisted'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PageTransitionEvent_get_persisted, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OverconstrainedError_get_name = function () { let r = cbb_wf.checkIllegal(this, "OverconstrainedError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OverconstrainedError_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OverconstrainedError_get_message = function () { let r = cbb_wf.checkIllegal(this, "OverconstrainedError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OverconstrainedError_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OverconstrainedError_get_constraint = function () { let r = cbb_wf.checkIllegal(this, "OverconstrainedError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'constraint'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OverconstrainedError_get_constraint, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OscillatorNode_get_type = function () { let r = cbb_wf.checkIllegal(this, "OscillatorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OscillatorNode_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OscillatorNode_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "OscillatorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'type', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OscillatorNode_set_type, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OscillatorNode_get_frequency = function () { let r = cbb_wf.checkIllegal(this, "OscillatorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'frequency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OscillatorNode_get_frequency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OscillatorNode_get_detune = function () { let r = cbb_wf.checkIllegal(this, "OscillatorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detune'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OscillatorNode_get_detune, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OscillatorNode_setPeriodicWave = function () { let r = cbb_wf.checkIllegal(this, "OscillatorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OscillatorNode_setPeriodicWave, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_get_canvas = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canvas'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_canvas, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_get_globalAlpha = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'globalAlpha'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_globalAlpha, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_globalAlpha = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'globalAlpha', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_globalAlpha, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_globalCompositeOperation = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'globalCompositeOperation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_globalCompositeOperation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_globalCompositeOperation = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'globalCompositeOperation', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_globalCompositeOperation, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_filter = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'filter'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_filter, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_filter = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'filter', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_filter, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_imageSmoothingEnabled = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'imageSmoothingEnabled'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_imageSmoothingEnabled, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_imageSmoothingEnabled = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'imageSmoothingEnabled', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_imageSmoothingEnabled, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_imageSmoothingQuality = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'imageSmoothingQuality'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_imageSmoothingQuality, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_imageSmoothingQuality = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'imageSmoothingQuality', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_imageSmoothingQuality, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_strokeStyle = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'strokeStyle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_strokeStyle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_strokeStyle = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'strokeStyle', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_strokeStyle, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_fillStyle = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fillStyle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_fillStyle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_fillStyle = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'fillStyle', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_fillStyle, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_shadowOffsetX = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shadowOffsetX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_shadowOffsetX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_shadowOffsetX = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'shadowOffsetX', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_shadowOffsetX, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_shadowOffsetY = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shadowOffsetY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_shadowOffsetY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_shadowOffsetY = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'shadowOffsetY', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_shadowOffsetY, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_shadowBlur = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shadowBlur'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_shadowBlur, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_shadowBlur = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'shadowBlur', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_shadowBlur, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_shadowColor = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shadowColor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_shadowColor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_shadowColor = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'shadowColor', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_shadowColor, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_lineWidth = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_lineWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_lineWidth = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lineWidth', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_lineWidth, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_lineCap = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineCap'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_lineCap, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_lineCap = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lineCap', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_lineCap, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_lineJoin = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineJoin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_lineJoin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_lineJoin = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lineJoin', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_lineJoin, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_miterLimit = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'miterLimit'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_miterLimit, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_miterLimit = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'miterLimit', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_miterLimit, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_lineDashOffset = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineDashOffset'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_lineDashOffset, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_lineDashOffset = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lineDashOffset', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_lineDashOffset, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_font = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'font'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_font, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_font = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'font', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_font, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_textAlign = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'textAlign'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_textAlign, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_textAlign = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'textAlign', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_textAlign, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_textBaseline = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'textBaseline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_textBaseline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_textBaseline = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'textBaseline', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_textBaseline, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_direction = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'direction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_direction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_direction = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'direction', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_direction, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_fontKerning = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fontKerning'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_fontKerning, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_fontKerning = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'fontKerning', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_fontKerning, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_fontStretch = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fontStretch'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_fontStretch, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_fontStretch = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'fontStretch', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_fontStretch, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_fontVariantCaps = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fontVariantCaps'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_fontVariantCaps, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_fontVariantCaps = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'fontVariantCaps', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_fontVariantCaps, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_letterSpacing = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'letterSpacing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_letterSpacing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_letterSpacing = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'letterSpacing', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_letterSpacing, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_textRendering = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'textRendering'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_textRendering, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_textRendering = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'textRendering', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_textRendering, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_get_wordSpacing = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'wordSpacing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_get_wordSpacing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvasRenderingContext2D_set_wordSpacing = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'wordSpacing', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_set_wordSpacing, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvasRenderingContext2D_clip = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_clip, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_createConicGradient = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_createConicGradient, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_createImageData = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_createImageData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_createLinearGradient = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_createLinearGradient, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_createPattern = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_createPattern, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_createRadialGradient = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_createRadialGradient, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_drawImage = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_drawImage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_fill = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_fill, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_fillText = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_fillText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_getImageData = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_getImageData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_getLineDash = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_getLineDash, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_getTransform = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_getTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_isContextLost = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_isContextLost, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_isPointInPath = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_isPointInPath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_isPointInStroke = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_isPointInStroke, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_measureText = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_measureText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_putImageData = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_putImageData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_reset = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_roundRect = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_roundRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_save = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_save, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_scale = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_scale, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_setLineDash = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_setLineDash, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_setTransform = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_setTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_stroke = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_stroke, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_strokeText = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_strokeText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_transform = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_transform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_translate = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_translate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_arc = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_arc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_arcTo = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_arcTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_beginPath = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_beginPath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_bezierCurveTo = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_bezierCurveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_clearRect = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_clearRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_closePath = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_closePath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_ellipse = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_ellipse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_fillRect = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_fillRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_lineTo = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_lineTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_moveTo = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_moveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_quadraticCurveTo = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_quadraticCurveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_rect = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_rect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_resetTransform = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_resetTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_restore = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_restore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_rotate = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_rotate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvasRenderingContext2D_strokeRect = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvasRenderingContext2D_strokeRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvas_get_width = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvas_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'width', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_set_width, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvas_get_height = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvas_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'height', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_set_height, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvas_get_oncontextlost = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncontextlost'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_get_oncontextlost, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvas_set_oncontextlost = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncontextlost', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_set_oncontextlost, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvas_get_oncontextrestored = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncontextrestored'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_get_oncontextrestored, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OffscreenCanvas_set_oncontextrestored = function (val) { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncontextrestored', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_set_oncontextrestored, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OffscreenCanvas_convertToBlob = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_convertToBlob, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvas_getContext = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_getContext, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OffscreenCanvas_transferToImageBitmap = function () { let r = cbb_wf.checkIllegal(this, "OffscreenCanvas"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OffscreenCanvas_transferToImageBitmap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OfflineAudioContext_get_oncomplete = function () { let r = cbb_wf.checkIllegal(this, "OfflineAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncomplete'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioContext_get_oncomplete, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OfflineAudioContext_set_oncomplete = function (val) { let r = cbb_wf.checkIllegal(this, "OfflineAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncomplete', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioContext_set_oncomplete, this =>", toString.call(this), ", val => ", '' + val, info); } } this.OfflineAudioContext_get_length = function () { let r = cbb_wf.checkIllegal(this, "OfflineAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioContext_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OfflineAudioContext_resume = function () { let r = cbb_wf.checkIllegal(this, "OfflineAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioContext_resume, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OfflineAudioContext_startRendering = function () { let r = cbb_wf.checkIllegal(this, "OfflineAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioContext_startRendering, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OfflineAudioContext_suspend = function () { let r = cbb_wf.checkIllegal(this, "OfflineAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioContext_suspend, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OfflineAudioCompletionEvent_get_renderedBuffer = function () { let r = cbb_wf.checkIllegal(this, "OfflineAudioCompletionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'renderedBuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OfflineAudioCompletionEvent_get_renderedBuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NodeList_entries = function () { let r = cbb_wf.checkIllegal(this, "NodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.entries.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeList_entries, 返回object'); break case "function": cbb_wf.console.log('[*] NodeList_entries, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeList_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeList_keys = function () { let r = cbb_wf.checkIllegal(this, "NodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.keys.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeList_keys, 返回object'); break case "function": cbb_wf.console.log('[*] NodeList_keys, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeList_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeList_values = function () { let r = cbb_wf.checkIllegal(this, "NodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.values.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeList_values, 返回object'); break case "function": cbb_wf.console.log('[*] NodeList_values, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeList_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeList_forEach = function () { let r = cbb_wf.checkIllegal(this, "NodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.forEach.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeList_forEach, 返回object'); break case "function": cbb_wf.console.log('[*] NodeList_forEach, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeList_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeList_get_length = function () { let r = cbb_wf.checkIllegal(this, "NodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeList_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] NodeList_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeList_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NodeList_item = function () { let r = cbb_wf.checkIllegal(this, "NodeList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeList_item, 返回object'); break case "function": cbb_wf.console.log('[*] NodeList_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeIterator_get_root = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.root; switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_get_root, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_get_root, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_get_root, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NodeIterator_get_referenceNode = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referenceNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_get_referenceNode, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_get_referenceNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_get_referenceNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NodeIterator_get_pointerBeforeReferenceNode = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pointerBeforeReferenceNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_get_pointerBeforeReferenceNode, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_get_pointerBeforeReferenceNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_get_pointerBeforeReferenceNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NodeIterator_get_whatToShow = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.whatToShow; switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_get_whatToShow, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_get_whatToShow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_get_whatToShow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NodeIterator_get_filter = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.filter; switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_get_filter, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_get_filter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_get_filter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NodeIterator_detach = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.detach.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_detach, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_detach, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_detach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeIterator_nextNode = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_nextNode, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_nextNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_nextNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NodeIterator_previousNode = function () { let r = cbb_wf.checkIllegal(this, "NodeIterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NodeIterator_previousNode, 返回object'); break case "function": cbb_wf.console.log('[*] NodeIterator_previousNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NodeIterator_previousNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_get_nodeType = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nodeType; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_nodeType, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_nodeType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_nodeType, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_nodeName = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nodeName; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_nodeName, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_nodeName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_nodeName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_baseURI = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.baseURI; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_baseURI, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_baseURI, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_baseURI, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_isConnected = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isConnected; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_isConnected, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_isConnected, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_isConnected, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_ownerDocument = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ownerDocument; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_ownerDocument, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_ownerDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_ownerDocument, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_parentNode = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentNode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_parentNode, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_parentNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_parentNode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_parentElement = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_parentElement, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_parentElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_parentElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_childNodes = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.childNodes; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_childNodes, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_childNodes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_childNodes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_firstChild = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.firstChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_firstChild, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_firstChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_firstChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_lastChild = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lastChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_lastChild, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_lastChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_lastChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_previousSibling = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_previousSibling, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_previousSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_previousSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_nextSibling = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_nextSibling, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_nextSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_nextSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_get_nodeValue = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nodeValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_nodeValue, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_nodeValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_nodeValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_set_nodeValue = function (val) { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Node_set_nodeValue, set object'); break case "function": cbb_wf.console.log('[*] Node_set_nodeValue, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.nodeValue = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_set_nodeValue, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Node_get_textContent = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textContent; switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_get_textContent, 返回object'); break case "function": cbb_wf.console.log('[*] Node_get_textContent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_get_textContent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Node_set_textContent = function (val) { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Node_set_textContent, set object'); break case "function": cbb_wf.console.log('[*] Node_set_textContent, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.textContent = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_set_textContent, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Node_appendChild = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); // dom_element jsdom节点 let result = dom_element.appendChild.apply(dom_element, arguments); // result 是jsdom的对象, 我们要给他套个壳。 switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_appendChild, 返回object'); break case "function": cbb_wf.console.log('[*] Node_appendChild, 返回function'); break default: // 如果是number或者boolean 我就不管了,直接返回出去 } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_appendChild, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_cloneNode = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cloneNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_cloneNode, 返回object'); break case "function": cbb_wf.console.log('[*] Node_cloneNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_cloneNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_compareDocumentPosition = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compareDocumentPosition.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_compareDocumentPosition, 返回object'); break case "function": cbb_wf.console.log('[*] Node_compareDocumentPosition, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_compareDocumentPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_contains = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contains.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_contains, 返回object'); break case "function": cbb_wf.console.log('[*] Node_contains, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_contains, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_getRootNode = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getRootNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_getRootNode, 返回object'); break case "function": cbb_wf.console.log('[*] Node_getRootNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_getRootNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_hasChildNodes = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasChildNodes.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_hasChildNodes, 返回object'); break case "function": cbb_wf.console.log('[*] Node_hasChildNodes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_hasChildNodes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_insertBefore = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertBefore.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_insertBefore, 返回object'); break case "function": cbb_wf.console.log('[*] Node_insertBefore, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_insertBefore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_isDefaultNamespace = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isDefaultNamespace.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_isDefaultNamespace, 返回object'); break case "function": cbb_wf.console.log('[*] Node_isDefaultNamespace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_isDefaultNamespace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_isEqualNode = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isEqualNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_isEqualNode, 返回object'); break case "function": cbb_wf.console.log('[*] Node_isEqualNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_isEqualNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_isSameNode = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isSameNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_isSameNode, 返回object'); break case "function": cbb_wf.console.log('[*] Node_isSameNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_isSameNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_lookupNamespaceURI = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lookupNamespaceURI.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_lookupNamespaceURI, 返回object'); break case "function": cbb_wf.console.log('[*] Node_lookupNamespaceURI, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_lookupNamespaceURI, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_lookupPrefix = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lookupPrefix.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_lookupPrefix, 返回object'); break case "function": cbb_wf.console.log('[*] Node_lookupPrefix, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_lookupPrefix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_normalize = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.normalize.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_normalize, 返回object'); break case "function": cbb_wf.console.log('[*] Node_normalize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_normalize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_removeChild = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeChild.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_removeChild, 返回object'); break case "function": cbb_wf.console.log('[*] Node_removeChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_removeChild, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Node_replaceChild = function () { let r = cbb_wf.checkIllegal(this, "Node"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceChild.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Node_replaceChild, 返回object'); break case "function": cbb_wf.console.log('[*] Node_replaceChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Node_replaceChild, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NetworkInformation_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "NetworkInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NetworkInformation_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NetworkInformation_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "NetworkInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NetworkInformation_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.NetworkInformation_get_effectiveType = function () { let r = cbb_wf.checkIllegal(this, "NetworkInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'effectiveType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NetworkInformation_get_effectiveType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NetworkInformation_get_rtt = function () { let r = cbb_wf.checkIllegal(this, "NetworkInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rtt'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NetworkInformation_get_rtt, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NetworkInformation_get_downlink = function () { let r = cbb_wf.checkIllegal(this, "NetworkInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'downlink'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NetworkInformation_get_downlink, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NetworkInformation_get_saveData = function () { let r = cbb_wf.checkIllegal(this, "NetworkInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'saveData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NetworkInformation_get_saveData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_vendorSub = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vendorSub'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_vendorSub, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_productSub = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'productSub'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_productSub, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_vendor = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vendor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_vendor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_maxTouchPoints = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxTouchPoints'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_maxTouchPoints, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_scheduling = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'scheduling'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_scheduling, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_userActivation = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userActivation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_userActivation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_doNotTrack = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'doNotTrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_doNotTrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_geolocation = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'geolocation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_geolocation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_connection = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connection'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_connection, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_plugins = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'plugins'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_plugins, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_mimeTypes = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mimeTypes'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_mimeTypes, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_pdfViewerEnabled = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pdfViewerEnabled'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_pdfViewerEnabled, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_webkitTemporaryStorage = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'webkitTemporaryStorage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_webkitTemporaryStorage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_webkitPersistentStorage = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'webkitPersistentStorage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_webkitPersistentStorage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_windowControlsOverlay = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'windowControlsOverlay'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_windowControlsOverlay, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_hardwareConcurrency = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hardwareConcurrency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_hardwareConcurrency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_cookieEnabled = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cookieEnabled'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_cookieEnabled, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_appCodeName = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'appCodeName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_appCodeName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_appName = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'appName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_appName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_appVersion = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'appVersion'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_appVersion, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_platform = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'platform'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_platform, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_product = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'product'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_product, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_userAgent = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userAgent'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_userAgent, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_language = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'language'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_language, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_languages = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'languages'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_languages, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_onLine = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onLine'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_onLine, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_webdriver = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'webdriver'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_webdriver, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_getGamepads = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_getGamepads, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_javaEnabled = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_javaEnabled, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_sendBeacon = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_sendBeacon, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_vibrate = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_vibrate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_get_deprecatedRunAdAuctionEnforcesKAnonymity = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deprecatedRunAdAuctionEnforcesKAnonymity'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_deprecatedRunAdAuctionEnforcesKAnonymity, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_protectedAudience = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protectedAudience'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_protectedAudience, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_bluetooth = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bluetooth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_bluetooth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_storageBuckets = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'storageBuckets'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_storageBuckets, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_clipboard = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clipboard'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_clipboard, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_credentials = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'credentials'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_credentials, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_keyboard = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keyboard'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_keyboard, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_managed = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'managed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_managed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_mediaDevices = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mediaDevices'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_mediaDevices, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_storage = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'storage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_storage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_serviceWorker = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'serviceWorker'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_serviceWorker, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_virtualKeyboard = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'virtualKeyboard'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_virtualKeyboard, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_wakeLock = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'wakeLock'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_wakeLock, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_deviceMemory = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceMemory'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_deviceMemory, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_userAgentData = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userAgentData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_userAgentData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_login = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'login'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_login, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_ink = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ink'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_ink, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_mediaCapabilities = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mediaCapabilities'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_mediaCapabilities, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_hid = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_hid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_locks = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'locks'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_locks, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_gpu = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gpu'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_gpu, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_mediaSession = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mediaSession'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_mediaSession, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_permissions = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'permissions'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_permissions, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_presentation = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'presentation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_presentation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_usb = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'usb'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_usb, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_xr = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'xr'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_xr, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_get_serial = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'serial'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] Navigator_get_serial, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigator_adAuctionComponents = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_adAuctionComponents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_runAdAuction = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_runAdAuction, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_canLoadAdAuctionFencedFrame = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_canLoadAdAuctionFencedFrame, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_canShare = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_canShare, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_share = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_share, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_clearAppBadge = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_clearAppBadge, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_getBattery = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_getBattery, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_getUserMedia = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_getUserMedia, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_requestMIDIAccess = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_requestMIDIAccess, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_requestMediaKeySystemAccess = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_requestMediaKeySystemAccess, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_setAppBadge = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_setAppBadge, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_webkitGetUserMedia = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_webkitGetUserMedia, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_clearOriginJoinedAdInterestGroups = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_clearOriginJoinedAdInterestGroups, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_createAuctionNonce = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_createAuctionNonce, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_joinAdInterestGroup = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_joinAdInterestGroup, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_leaveAdInterestGroup = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_leaveAdInterestGroup, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_updateAdInterestGroups = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_updateAdInterestGroups, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_deprecatedReplaceInURN = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_deprecatedReplaceInURN, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_deprecatedURNToURL = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_deprecatedURNToURL, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_getInstalledRelatedApps = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_getInstalledRelatedApps, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_registerProtocolHandler = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_registerProtocolHandler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigator_unregisterProtocolHandler = function () { let r = cbb_wf.checkIllegal(this, "Navigator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Navigator_unregisterProtocolHandler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_get_length = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.NamedNodeMap_getNamedItem = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getNamedItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_getNamedItem, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_getNamedItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_getNamedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_getNamedItemNS = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getNamedItemNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_getNamedItemNS, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_getNamedItemNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_getNamedItemNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_item = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_item, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_removeNamedItem = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeNamedItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_removeNamedItem, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_removeNamedItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_removeNamedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_removeNamedItemNS = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeNamedItemNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_removeNamedItemNS, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_removeNamedItemNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_removeNamedItemNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_setNamedItem = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setNamedItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_setNamedItem, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_setNamedItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_setNamedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NamedNodeMap_setNamedItemNS = function () { let r = cbb_wf.checkIllegal(this, "NamedNodeMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setNamedItemNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] NamedNodeMap_setNamedItemNS, 返回object'); break case "function": cbb_wf.console.log('[*] NamedNodeMap_setNamedItemNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NamedNodeMap_setNamedItemNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MutationRecord_get_type = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_target = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_addedNodes = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.addedNodes; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_addedNodes, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_addedNodes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_addedNodes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_removedNodes = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removedNodes; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_removedNodes, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_removedNodes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_removedNodes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_previousSibling = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_previousSibling, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_previousSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_previousSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_nextSibling = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_nextSibling, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_nextSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_nextSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_attributeName = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.attributeName; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_attributeName, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_attributeName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_attributeName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_attributeNamespace = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.attributeNamespace; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_attributeNamespace, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_attributeNamespace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_attributeNamespace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationRecord_get_oldValue = function () { let r = cbb_wf.checkIllegal(this, "MutationRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oldValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationRecord_get_oldValue, 返回object'); break case "function": cbb_wf.console.log('[*] MutationRecord_get_oldValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationRecord_get_oldValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.MutationObserver_disconnect = function () { let r = cbb_wf.checkIllegal(this, "MutationObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disconnect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationObserver_disconnect, 返回object'); break case "function": cbb_wf.console.log('[*] MutationObserver_disconnect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationObserver_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MutationObserver_observe = function () { let r = cbb_wf.checkIllegal(this, "MutationObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.observe.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationObserver_observe, 返回object'); break case "function": cbb_wf.console.log('[*] MutationObserver_observe, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationObserver_observe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MutationObserver_takeRecords = function () { let r = cbb_wf.checkIllegal(this, "MutationObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.takeRecords.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] MutationObserver_takeRecords, 返回object'); break case "function": cbb_wf.console.log('[*] MutationObserver_takeRecords, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationObserver_takeRecords, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MutationEvent_get_relatedNode = function () { let r = cbb_wf.checkIllegal(this, "MutationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'relatedNode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationEvent_get_relatedNode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MutationEvent_get_prevValue = function () { let r = cbb_wf.checkIllegal(this, "MutationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'prevValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationEvent_get_prevValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MutationEvent_get_newValue = function () { let r = cbb_wf.checkIllegal(this, "MutationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'newValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationEvent_get_newValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MutationEvent_get_attrName = function () { let r = cbb_wf.checkIllegal(this, "MutationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'attrName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationEvent_get_attrName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MutationEvent_get_attrChange = function () { let r = cbb_wf.checkIllegal(this, "MutationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'attrChange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationEvent_get_attrChange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MutationEvent_initMutationEvent = function () { let r = cbb_wf.checkIllegal(this, "MutationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MutationEvent_initMutationEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MouseEvent_get_screenX = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'screenX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_screenX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_screenY = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'screenY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_screenY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_clientX = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clientX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_clientX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_clientY = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clientY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_clientY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_ctrlKey = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ctrlKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_ctrlKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_shiftKey = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shiftKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_shiftKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_altKey = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'altKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_altKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_metaKey = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'metaKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_metaKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_button = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'button'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_button, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_buttons = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'buttons'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_buttons, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_relatedTarget = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'relatedTarget'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_relatedTarget, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_pageX = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pageX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_pageX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_pageY = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pageY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_pageY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_x = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_y = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_offsetX = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offsetX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_offsetX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_offsetY = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offsetY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_offsetY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_movementX = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'movementX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_movementX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_movementY = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'movementY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_movementY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_fromElement = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fromElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_fromElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_toElement = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'toElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_toElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_layerX = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'layerX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_layerX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_get_layerY = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'layerY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_get_layerY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MouseEvent_getModifierState = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_getModifierState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MouseEvent_initMouseEvent = function () { let r = cbb_wf.checkIllegal(this, "MouseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MouseEvent_initMouseEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MimeTypeArray_get_length = function () { let r = cbb_wf.checkIllegal(this, "MimeTypeArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeTypeArray_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MimeTypeArray_item = function () { let r = cbb_wf.checkIllegal(this, "MimeTypeArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeTypeArray_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MimeTypeArray_namedItem = function () { let r = cbb_wf.checkIllegal(this, "MimeTypeArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeTypeArray_namedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MimeType_get_type = function () { let r = cbb_wf.checkIllegal(this, "MimeType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeType_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MimeType_get_suffixes = function () { let r = cbb_wf.checkIllegal(this, "MimeType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'suffixes'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeType_get_suffixes, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MimeType_get_description = function () { let r = cbb_wf.checkIllegal(this, "MimeType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'description'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeType_get_description, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MimeType_get_enabledPlugin = function () { let r = cbb_wf.checkIllegal(this, "MimeType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'enabledPlugin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MimeType_get_enabledPlugin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessagePort_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessagePort_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MessagePort_get_onmessageerror = function () { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessageerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_get_onmessageerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessagePort_set_onmessageerror = function (val) { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessageerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_set_onmessageerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MessagePort_close = function () { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MessagePort_postMessage = function () { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_postMessage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MessagePort_start = function () { let r = cbb_wf.checkIllegal(this, "MessagePort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessagePort_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MessageEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageEvent_get_origin = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'origin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_get_origin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageEvent_get_lastEventId = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lastEventId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_get_lastEventId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageEvent_get_source = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'source'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_get_source, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageEvent_get_ports = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ports'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_get_ports, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageEvent_get_userActivation = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userActivation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_get_userActivation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageEvent_initMessageEvent = function () { let r = cbb_wf.checkIllegal(this, "MessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageEvent_initMessageEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MessageChannel_get_port1 = function () { let r = cbb_wf.checkIllegal(this, "MessageChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port1'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageChannel_get_port1, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MessageChannel_get_port2 = function () { let r = cbb_wf.checkIllegal(this, "MessageChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port2'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MessageChannel_get_port2, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackEvent_get_track = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrackEvent_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamEvent_get_stream = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'stream'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamEvent_get_stream, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamAudioSourceNode_get_mediaStream = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamAudioSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mediaStream'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamAudioSourceNode_get_mediaStream, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamAudioDestinationNode_get_stream = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamAudioDestinationNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'stream'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamAudioDestinationNode_get_stream, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_get_id = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_get_active = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'active'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_get_active, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_get_onaddtrack = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaddtrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_get_onaddtrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_set_onaddtrack = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaddtrack', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_set_onaddtrack, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStream_get_onremovetrack = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onremovetrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_get_onremovetrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_set_onremovetrack = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onremovetrack', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_set_onremovetrack, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStream_get_onactive = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onactive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_get_onactive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_set_onactive = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onactive', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_set_onactive, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStream_get_oninactive = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oninactive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_get_oninactive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStream_set_oninactive = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oninactive', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_set_oninactive, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStream_addTrack = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_addTrack, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStream_clone = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_clone, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStream_getAudioTracks = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_getAudioTracks, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStream_getTrackById = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_getTrackById, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStream_getTracks = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_getTracks, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStream_getVideoTracks = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_getVideoTracks, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStream_removeTrack = function () { let r = cbb_wf.checkIllegal(this, "MediaStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStream_removeTrack, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaRecorder_get_stream = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'stream'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_stream, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_get_mimeType = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mimeType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_mimeType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_get_state = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_get_onstart = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_onstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_set_onstart = function (val) { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_set_onstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaRecorder_get_onstop = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstop'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_onstop, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_set_onstop = function (val) { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstop', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_set_onstop, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaRecorder_get_ondataavailable = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondataavailable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_ondataavailable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_set_ondataavailable = function (val) { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondataavailable', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_set_ondataavailable, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaRecorder_get_onpause = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onpause'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_onpause, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_set_onpause = function (val) { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onpause', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_set_onpause, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaRecorder_get_onresume = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onresume'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_onresume, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_set_onresume = function (val) { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onresume', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_set_onresume, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaRecorder_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaRecorder_get_videoBitsPerSecond = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'videoBitsPerSecond'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_videoBitsPerSecond, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_get_audioBitsPerSecond = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'audioBitsPerSecond'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_audioBitsPerSecond, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_get_audioBitrateMode = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'audioBitrateMode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_get_audioBitrateMode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaRecorder_pause = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_pause, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaRecorder_requestData = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_requestData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaRecorder_resume = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_resume, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaRecorder_start = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaRecorder_stop = function () { let r = cbb_wf.checkIllegal(this, "MediaRecorder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaRecorder_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaQueryListEvent_get_media = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryListEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'media'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryListEvent_get_media, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaQueryListEvent_get_matches = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryListEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matches'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryListEvent_get_matches, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaQueryList_get_media = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'media'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryList_get_media, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaQueryList_get_matches = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matches'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryList_get_matches, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaQueryList_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryList_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaQueryList_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "MediaQueryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryList_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaQueryList_addListener = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryList_addListener, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaQueryList_removeListener = function () { let r = cbb_wf.checkIllegal(this, "MediaQueryList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaQueryList_removeListener, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaList_get_length = function () { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaList_get_mediaText = function () { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mediaText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_get_mediaText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaList_set_mediaText = function (val) { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'mediaText', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_set_mediaText, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaList_appendMedium = function () { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_appendMedium, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaList_deleteMedium = function () { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_deleteMedium, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaList_item = function () { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaList_toString = function () { let r = cbb_wf.checkIllegal(this, "MediaList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaList_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaError_get_code = function () { let r = cbb_wf.checkIllegal(this, "MediaError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaError_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaError_get_message = function () { let r = cbb_wf.checkIllegal(this, "MediaError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaError_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaEncryptedEvent_get_initDataType = function () { let r = cbb_wf.checkIllegal(this, "MediaEncryptedEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'initDataType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaEncryptedEvent_get_initDataType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaEncryptedEvent_get_initData = function () { let r = cbb_wf.checkIllegal(this, "MediaEncryptedEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'initData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaEncryptedEvent_get_initData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaElementAudioSourceNode_get_mediaElement = function () { let r = cbb_wf.checkIllegal(this, "MediaElementAudioSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mediaElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaElementAudioSourceNode_get_mediaElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaCapabilities_decodingInfo = function () { let r = cbb_wf.checkIllegal(this, "MediaCapabilities"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaCapabilities_decodingInfo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaCapabilities_encodingInfo = function () { let r = cbb_wf.checkIllegal(this, "MediaCapabilities"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaCapabilities_encodingInfo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.LayoutShiftAttribution_get_node = function () { let r = cbb_wf.checkIllegal(this, "LayoutShiftAttribution"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'node'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShiftAttribution_get_node, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShiftAttribution_get_previousRect = function () { let r = cbb_wf.checkIllegal(this, "LayoutShiftAttribution"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'previousRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShiftAttribution_get_previousRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShiftAttribution_get_currentRect = function () { let r = cbb_wf.checkIllegal(this, "LayoutShiftAttribution"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShiftAttribution_get_currentRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShiftAttribution_toJSON = function () { let r = cbb_wf.checkIllegal(this, "LayoutShiftAttribution"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShiftAttribution_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.LayoutShift_get_value = function () { let r = cbb_wf.checkIllegal(this, "LayoutShift"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShift_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShift_get_hadRecentInput = function () { let r = cbb_wf.checkIllegal(this, "LayoutShift"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hadRecentInput'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShift_get_hadRecentInput, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShift_get_lastInputTime = function () { let r = cbb_wf.checkIllegal(this, "LayoutShift"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lastInputTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShift_get_lastInputTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShift_get_sources = function () { let r = cbb_wf.checkIllegal(this, "LayoutShift"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sources'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShift_get_sources, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LayoutShift_toJSON = function () { let r = cbb_wf.checkIllegal(this, "LayoutShift"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LayoutShift_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.LargestContentfulPaint_get_renderTime = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'renderTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_get_renderTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LargestContentfulPaint_get_loadTime = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loadTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_get_loadTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LargestContentfulPaint_get_size = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LargestContentfulPaint_get_id = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LargestContentfulPaint_get_url = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LargestContentfulPaint_get_element = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'element'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_get_element, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LargestContentfulPaint_toJSON = function () { let r = cbb_wf.checkIllegal(this, "LargestContentfulPaint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LargestContentfulPaint_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyframeEffect_get_target = function () { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'target'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_get_target, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyframeEffect_set_target = function (val) { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'target', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_set_target, this =>", toString.call(this), ", val => ", '' + val, info); } } this.KeyframeEffect_get_pseudoElement = function () { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pseudoElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_get_pseudoElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyframeEffect_set_pseudoElement = function (val) { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'pseudoElement', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_set_pseudoElement, this =>", toString.call(this), ", val => ", '' + val, info); } } this.KeyframeEffect_get_composite = function () { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'composite'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_get_composite, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyframeEffect_set_composite = function (val) { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'composite', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_set_composite, this =>", toString.call(this), ", val => ", '' + val, info); } } this.KeyframeEffect_getKeyframes = function () { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_getKeyframes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyframeEffect_setKeyframes = function () { let r = cbb_wf.checkIllegal(this, "KeyframeEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyframeEffect_setKeyframes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardEvent_get_key = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'key'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_key, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_code = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_location = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'location'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_location, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_ctrlKey = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ctrlKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_ctrlKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_shiftKey = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shiftKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_shiftKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_altKey = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'altKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_altKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_metaKey = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'metaKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_metaKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_repeat = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'repeat'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_repeat, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_isComposing = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isComposing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_isComposing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_charCode = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'charCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_charCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_get_keyCode = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keyCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_get_keyCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardEvent_getModifierState = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_getModifierState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardEvent_initKeyboardEvent = function () { let r = cbb_wf.checkIllegal(this, "KeyboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardEvent_initKeyboardEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IntersectionObserverEntry_get_time = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'time'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_time, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_rootBounds = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rootBounds'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_rootBounds, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_boundingClientRect = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'boundingClientRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_boundingClientRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_intersectionRect = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'intersectionRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_intersectionRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_isIntersecting = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isIntersecting'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_isIntersecting, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_isVisible = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isVisible'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_isVisible, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_intersectionRatio = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'intersectionRatio'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_intersectionRatio, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserverEntry_get_target = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserverEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'target'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserverEntry_get_target, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserver_get_root = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'root'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_get_root, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserver_get_rootMargin = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rootMargin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_get_rootMargin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserver_get_thresholds = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'thresholds'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_get_thresholds, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserver_get_delay = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'delay'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_get_delay, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserver_get_trackVisibility = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'trackVisibility'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_get_trackVisibility, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IntersectionObserver_disconnect = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IntersectionObserver_observe = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_observe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IntersectionObserver_takeRecords = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_takeRecords, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IntersectionObserver_unobserve = function () { let r = cbb_wf.checkIllegal(this, "IntersectionObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IntersectionObserver_unobserve, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.InputEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "InputEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.InputEvent_get_isComposing = function () { let r = cbb_wf.checkIllegal(this, "InputEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isComposing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputEvent_get_isComposing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.InputEvent_get_inputType = function () { let r = cbb_wf.checkIllegal(this, "InputEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inputType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputEvent_get_inputType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.InputEvent_get_dataTransfer = function () { let r = cbb_wf.checkIllegal(this, "InputEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dataTransfer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputEvent_get_dataTransfer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.InputEvent_getTargetRanges = function () { let r = cbb_wf.checkIllegal(this, "InputEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputEvent_getTargetRanges, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.InputDeviceInfo_getCapabilities = function () { let r = cbb_wf.checkIllegal(this, "InputDeviceInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputDeviceInfo_getCapabilities, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.InputDeviceCapabilities_get_firesTouchEvents = function () { let r = cbb_wf.checkIllegal(this, "InputDeviceCapabilities"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'firesTouchEvents'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "InputDeviceCapabilities_get_firesTouchEvents, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageData_get_width = function () { let r = cbb_wf.checkIllegal(this, "ImageData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] ImageData_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] ImageData_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageData_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ImageData_get_height = function () { let r = cbb_wf.checkIllegal(this, "ImageData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] ImageData_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] ImageData_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageData_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ImageData_get_data = function () { let r = cbb_wf.checkIllegal(this, "ImageData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.data; switch (typeof result) { case "object": cbb_wf.console.log('[*] ImageData_get_data, 返回object'); break case "function": cbb_wf.console.log('[*] ImageData_get_data, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageData_get_data, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ImageData_get_colorSpace = function () { let r = cbb_wf.checkIllegal(this, "ImageData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.colorSpace; switch (typeof result) { case "object": cbb_wf.console.log('[*] ImageData_get_colorSpace, 返回object'); break case "function": cbb_wf.console.log('[*] ImageData_get_colorSpace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageData_get_colorSpace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.ImageCapture_get_track = function () { let r = cbb_wf.checkIllegal(this, "ImageCapture"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'track'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageCapture_get_track, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageCapture_getPhotoCapabilities = function () { let r = cbb_wf.checkIllegal(this, "ImageCapture"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageCapture_getPhotoCapabilities, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageCapture_getPhotoSettings = function () { let r = cbb_wf.checkIllegal(this, "ImageCapture"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageCapture_getPhotoSettings, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageCapture_grabFrame = function () { let r = cbb_wf.checkIllegal(this, "ImageCapture"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageCapture_grabFrame, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageCapture_takePhoto = function () { let r = cbb_wf.checkIllegal(this, "ImageCapture"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageCapture_takePhoto, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageBitmapRenderingContext_get_canvas = function () { let r = cbb_wf.checkIllegal(this, "ImageBitmapRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canvas'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageBitmapRenderingContext_get_canvas, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageBitmapRenderingContext_transferFromImageBitmap = function () { let r = cbb_wf.checkIllegal(this, "ImageBitmapRenderingContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageBitmapRenderingContext_transferFromImageBitmap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageBitmap_get_width = function () { let r = cbb_wf.checkIllegal(this, "ImageBitmap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageBitmap_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageBitmap_get_height = function () { let r = cbb_wf.checkIllegal(this, "ImageBitmap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageBitmap_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageBitmap_close = function () { let r = cbb_wf.checkIllegal(this, "ImageBitmap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageBitmap_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IdleDeadline_get_didTimeout = function () { let r = cbb_wf.checkIllegal(this, "IdleDeadline"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'didTimeout'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDeadline_get_didTimeout, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IdleDeadline_timeRemaining = function () { let r = cbb_wf.checkIllegal(this, "IdleDeadline"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDeadline_timeRemaining, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IIRFilterNode_getFrequencyResponse = function () { let r = cbb_wf.checkIllegal(this, "IIRFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IIRFilterNode_getFrequencyResponse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBVersionChangeEvent_get_oldVersion = function () { let r = cbb_wf.checkIllegal(this, "IDBVersionChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oldVersion'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBVersionChangeEvent_get_oldVersion, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBVersionChangeEvent_get_newVersion = function () { let r = cbb_wf.checkIllegal(this, "IDBVersionChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'newVersion'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBVersionChangeEvent_get_newVersion, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBVersionChangeEvent_get_dataLoss = function () { let r = cbb_wf.checkIllegal(this, "IDBVersionChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dataLoss'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBVersionChangeEvent_get_dataLoss, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBVersionChangeEvent_get_dataLossMessage = function () { let r = cbb_wf.checkIllegal(this, "IDBVersionChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dataLossMessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBVersionChangeEvent_get_dataLossMessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_get_objectStoreNames = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'objectStoreNames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_objectStoreNames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_get_mode = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_mode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_get_durability = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'durability'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_durability, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_get_db = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'db'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_db, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_get_error = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onabort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_onabort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onabort', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_set_onabort, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBTransaction_get_oncomplete = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncomplete'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_oncomplete, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_set_oncomplete = function (val) { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncomplete', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_set_oncomplete, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBTransaction_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBTransaction_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBTransaction_abort = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBTransaction_commit = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_commit, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBTransaction_objectStore = function () { let r = cbb_wf.checkIllegal(this, "IDBTransaction"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBTransaction_objectStore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBRequest_get_result = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'result'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_result, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_get_error = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_get_source = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'source'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_source, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_get_transaction = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transaction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_transaction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_get_onsuccess = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsuccess'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_onsuccess, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_set_onsuccess = function (val) { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsuccess', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_set_onsuccess, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBRequest_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBRequest_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "IDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBRequest_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBOpenDBRequest_get_onblocked = function () { let r = cbb_wf.checkIllegal(this, "IDBOpenDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onblocked'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBOpenDBRequest_get_onblocked, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBOpenDBRequest_set_onblocked = function (val) { let r = cbb_wf.checkIllegal(this, "IDBOpenDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onblocked', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBOpenDBRequest_set_onblocked, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBOpenDBRequest_get_onupgradeneeded = function () { let r = cbb_wf.checkIllegal(this, "IDBOpenDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onupgradeneeded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBOpenDBRequest_get_onupgradeneeded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBOpenDBRequest_set_onupgradeneeded = function (val) { let r = cbb_wf.checkIllegal(this, "IDBOpenDBRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onupgradeneeded', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBOpenDBRequest_set_onupgradeneeded, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBObjectStore_get_name = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBObjectStore_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'name', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_set_name, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBObjectStore_get_keyPath = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keyPath'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_get_keyPath, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBObjectStore_get_indexNames = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'indexNames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_get_indexNames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBObjectStore_get_transaction = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transaction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_get_transaction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBObjectStore_get_autoIncrement = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'autoIncrement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_get_autoIncrement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBObjectStore_add = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_clear = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_count = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_count, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_createIndex = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_createIndex, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_delete = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_deleteIndex = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_deleteIndex, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_get = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_getAll = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_getAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_getAllKeys = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_getAllKeys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_getKey = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_getKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_index = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_index, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_openCursor = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_openCursor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_openKeyCursor = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_openKeyCursor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBObjectStore_put = function () { let r = cbb_wf.checkIllegal(this, "IDBObjectStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBObjectStore_put, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBKeyRange_get_lower = function () { let r = cbb_wf.checkIllegal(this, "IDBKeyRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lower'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBKeyRange_get_lower, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBKeyRange_get_upper = function () { let r = cbb_wf.checkIllegal(this, "IDBKeyRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upper'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBKeyRange_get_upper, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBKeyRange_get_lowerOpen = function () { let r = cbb_wf.checkIllegal(this, "IDBKeyRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lowerOpen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBKeyRange_get_lowerOpen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBKeyRange_get_upperOpen = function () { let r = cbb_wf.checkIllegal(this, "IDBKeyRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upperOpen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBKeyRange_get_upperOpen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBKeyRange_includes = function () { let r = cbb_wf.checkIllegal(this, "IDBKeyRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBKeyRange_includes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_get_name = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBIndex_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'name', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_set_name, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBIndex_get_objectStore = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'objectStore'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_get_objectStore, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBIndex_get_keyPath = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keyPath'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_get_keyPath, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBIndex_get_multiEntry = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'multiEntry'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_get_multiEntry, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBIndex_get_unique = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unique'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_get_unique, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBIndex_count = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_count, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_get = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_getAll = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_getAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_getAllKeys = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_getAllKeys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_getKey = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_getKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_openCursor = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_openCursor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBIndex_openKeyCursor = function () { let r = cbb_wf.checkIllegal(this, "IDBIndex"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBIndex_openKeyCursor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBFactory_cmp = function () { let r = cbb_wf.checkIllegal(this, "IDBFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBFactory_cmp, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBFactory_databases = function () { let r = cbb_wf.checkIllegal(this, "IDBFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBFactory_databases, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBFactory_deleteDatabase = function () { let r = cbb_wf.checkIllegal(this, "IDBFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBFactory_deleteDatabase, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBFactory_open = function () { let r = cbb_wf.checkIllegal(this, "IDBFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBFactory_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBDatabase_get_name = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_get_version = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'version'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_version, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_get_objectStoreNames = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'objectStoreNames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_objectStoreNames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onabort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_onabort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onabort', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_set_onabort, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBDatabase_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_onclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_set_onclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBDatabase_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBDatabase_get_onversionchange = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onversionchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_get_onversionchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBDatabase_set_onversionchange = function (val) { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onversionchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_set_onversionchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IDBDatabase_close = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBDatabase_createObjectStore = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_createObjectStore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBDatabase_deleteObjectStore = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_deleteObjectStore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBDatabase_transaction = function () { let r = cbb_wf.checkIllegal(this, "IDBDatabase"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBDatabase_transaction, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBCursorWithValue_get_value = function () { let r = cbb_wf.checkIllegal(this, "IDBCursorWithValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursorWithValue_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBCursor_get_source = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'source'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_get_source, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBCursor_get_direction = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'direction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_get_direction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBCursor_get_key = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'key'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_get_key, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBCursor_get_primaryKey = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'primaryKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_get_primaryKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBCursor_get_request = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'request'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_get_request, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IDBCursor_advance = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_advance, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBCursor_continue = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_continue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBCursor_continuePrimaryKey = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_continuePrimaryKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBCursor_delete = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.IDBCursor_update = function () { let r = cbb_wf.checkIllegal(this, "IDBCursor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IDBCursor_update, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.History_get_length = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.History_get_scrollRestoration = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'scrollRestoration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_get_scrollRestoration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.History_set_scrollRestoration = function (val) { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'scrollRestoration', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_set_scrollRestoration, this =>", toString.call(this), ", val => ", '' + val, info); } } this.History_get_state = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.History_back = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_back, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.History_forward = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_forward, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.History_go = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_go, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.History_pushState = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_pushState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.History_replaceState = function () { let r = cbb_wf.checkIllegal(this, "History"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "History_replaceState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_append = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_delete = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_get = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_has = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_set = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_set, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_entries = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_forEach = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_keys = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Headers_values = function () { let r = cbb_wf.checkIllegal(this, "Headers"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Headers_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HashChangeEvent_get_oldURL = function () { let r = cbb_wf.checkIllegal(this, "HashChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oldURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HashChangeEvent_get_oldURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HashChangeEvent_get_newURL = function () { let r = cbb_wf.checkIllegal(this, "HashChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'newURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HashChangeEvent_get_newURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HTMLVideoElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_get_videoWidth = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.videoWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_videoWidth, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_videoWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_videoWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_get_videoHeight = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.videoHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_videoHeight, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_videoHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_videoHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_get_poster = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.poster; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_poster, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_poster, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_poster, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_poster = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_poster, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_poster, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.poster = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_poster, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_get_webkitDecodedFrameCount = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitDecodedFrameCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitDecodedFrameCount, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitDecodedFrameCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_webkitDecodedFrameCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_get_webkitDroppedFrameCount = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitDroppedFrameCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitDroppedFrameCount, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitDroppedFrameCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_webkitDroppedFrameCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_get_playsInline = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.playsInline; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_playsInline, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_playsInline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_playsInline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_playsInline = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_playsInline, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_playsInline, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.playsInline = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_playsInline, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_get_webkitSupportsFullscreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitSupportsFullscreen; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitSupportsFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitSupportsFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_webkitSupportsFullscreen, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_get_webkitDisplayingFullscreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitDisplayingFullscreen; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitDisplayingFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_webkitDisplayingFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_webkitDisplayingFullscreen, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_get_onenterpictureinpicture = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onenterpictureinpicture; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_onenterpictureinpicture, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_onenterpictureinpicture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_onenterpictureinpicture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_onenterpictureinpicture = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_onenterpictureinpicture, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_onenterpictureinpicture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onenterpictureinpicture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_onenterpictureinpicture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_get_onleavepictureinpicture = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onleavepictureinpicture; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_onleavepictureinpicture, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_onleavepictureinpicture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_onleavepictureinpicture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_onleavepictureinpicture = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_onleavepictureinpicture, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_onleavepictureinpicture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onleavepictureinpicture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_onleavepictureinpicture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_get_disablePictureInPicture = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disablePictureInPicture; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_get_disablePictureInPicture, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_get_disablePictureInPicture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_get_disablePictureInPicture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLVideoElement_set_disablePictureInPicture = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_set_disablePictureInPicture, set object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_set_disablePictureInPicture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disablePictureInPicture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_set_disablePictureInPicture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLVideoElement_cancelVideoFrameCallback = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cancelVideoFrameCallback.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_cancelVideoFrameCallback, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_cancelVideoFrameCallback, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_cancelVideoFrameCallback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_requestVideoFrameCallback = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requestVideoFrameCallback.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_requestVideoFrameCallback, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_requestVideoFrameCallback, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_requestVideoFrameCallback, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_getVideoPlaybackQuality = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getVideoPlaybackQuality.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_getVideoPlaybackQuality, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_getVideoPlaybackQuality, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_getVideoPlaybackQuality, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_requestPictureInPicture = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requestPictureInPicture.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_requestPictureInPicture, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_requestPictureInPicture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_requestPictureInPicture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_webkitEnterFullScreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitEnterFullScreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_webkitEnterFullScreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_webkitEnterFullScreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_webkitEnterFullScreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_webkitEnterFullscreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitEnterFullscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_webkitEnterFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_webkitEnterFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_webkitEnterFullscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_webkitExitFullScreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitExitFullScreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_webkitExitFullScreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_webkitExitFullScreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_webkitExitFullScreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLVideoElement_webkitExitFullscreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLVideoElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitExitFullscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLVideoElement_webkitExitFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLVideoElement_webkitExitFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLVideoElement_webkitExitFullscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLUListElement_get_compact = function () { let r = cbb_wf.checkIllegal(this, "HTMLUListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compact; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLUListElement_get_compact, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLUListElement_get_compact, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLUListElement_get_compact, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLUListElement_set_compact = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLUListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLUListElement_set_compact, set object'); break case "function": cbb_wf.console.log('[*] HTMLUListElement_set_compact, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.compact = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLUListElement_set_compact, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLUListElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLUListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLUListElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLUListElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLUListElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLUListElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLUListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLUListElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLUListElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLUListElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTrackElement_get_kind = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.kind; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_kind, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_kind, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_kind, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTrackElement_set_kind = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_set_kind, set object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_set_kind, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.kind = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_set_kind, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTrackElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTrackElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTrackElement_get_srclang = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.srclang; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_srclang, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_srclang, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_srclang, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTrackElement_set_srclang = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_set_srclang, set object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_set_srclang, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.srclang = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_set_srclang, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTrackElement_get_label = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.label; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_label, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_label, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_label, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTrackElement_set_label = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_set_label, set object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_set_label, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.label = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_set_label, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTrackElement_get_default = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.default; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_default, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_default, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_default, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTrackElement_set_default = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_set_default, set object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_set_default, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.default = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_set_default, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTrackElement_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.readyState; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_readyState, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_readyState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_readyState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTrackElement_get_track = function () { let r = cbb_wf.checkIllegal(this, "HTMLTrackElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.track; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTrackElement_get_track, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTrackElement_get_track, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTrackElement_get_track, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTitleElement_get_text = function () { let r = cbb_wf.checkIllegal(this, "HTMLTitleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.text; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTitleElement_get_text, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTitleElement_get_text, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTitleElement_get_text, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTitleElement_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTitleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTitleElement_set_text, set object'); break case "function": cbb_wf.console.log('[*] HTMLTitleElement_set_text, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.text = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTitleElement_set_text, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTimeElement_get_dateTime = function () { let r = cbb_wf.checkIllegal(this, "HTMLTimeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dateTime; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTimeElement_get_dateTime, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTimeElement_get_dateTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTimeElement_get_dateTime, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTimeElement_set_dateTime = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTimeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTimeElement_set_dateTime, set object'); break case "function": cbb_wf.console.log('[*] HTMLTimeElement_set_dateTime, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.dateTime = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTimeElement_set_dateTime, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_autocomplete = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autocomplete; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_autocomplete, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_autocomplete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_autocomplete, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_autocomplete = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_autocomplete, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_autocomplete, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autocomplete = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_autocomplete, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_cols = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cols; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_cols, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_cols, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_cols, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_cols = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_cols, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_cols, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cols = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_cols, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_dirName = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dirName; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_dirName, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_dirName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_dirName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_dirName = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_dirName, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_dirName, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.dirName = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_dirName, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_maxLength = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.maxLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_maxLength, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_maxLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_maxLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_maxLength = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_maxLength, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_maxLength, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.maxLength = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_maxLength, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_minLength = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.minLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_minLength, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_minLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_minLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_minLength = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_minLength, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_minLength, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.minLength = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_minLength, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_placeholder = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.placeholder; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_placeholder, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_placeholder, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_placeholder, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_placeholder = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_placeholder, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_placeholder, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.placeholder = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_placeholder, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_readOnly = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.readOnly; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_readOnly, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_readOnly, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_readOnly, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_readOnly = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_readOnly, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_readOnly, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.readOnly = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_readOnly, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_required = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.required; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_required, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_required, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_required, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_required = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_required, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_required, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.required = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_required, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_rows = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rows; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_rows, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_rows, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_rows, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_rows = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_rows, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_rows, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rows = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_rows, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_wrap = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.wrap; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_wrap, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_wrap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_wrap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_wrap = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_wrap, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_wrap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.wrap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_wrap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_defaultValue = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_defaultValue, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_defaultValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_defaultValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_defaultValue = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_defaultValue, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_defaultValue, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultValue = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_defaultValue, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_textLength = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_textLength, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_textLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_textLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_get_selectionStart = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectionStart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_selectionStart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_selectionStart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_selectionStart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_selectionStart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_selectionStart, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_selectionStart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectionStart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_selectionStart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_selectionEnd = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectionEnd; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_selectionEnd, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_selectionEnd, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_selectionEnd, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_selectionEnd = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_selectionEnd, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_selectionEnd, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectionEnd = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_selectionEnd, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_get_selectionDirection = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectionDirection; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_get_selectionDirection, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_get_selectionDirection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_get_selectionDirection, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTextAreaElement_set_selectionDirection = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_set_selectionDirection, set object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_set_selectionDirection, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectionDirection = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_set_selectionDirection, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTextAreaElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTextAreaElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTextAreaElement_select = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.select.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_select, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_select, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_select, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTextAreaElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTextAreaElement_setRangeText = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setRangeText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_setRangeText, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_setRangeText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_setRangeText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTextAreaElement_setSelectionRange = function () { let r = cbb_wf.checkIllegal(this, "HTMLTextAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setSelectionRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTextAreaElement_setSelectionRange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTextAreaElement_setSelectionRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTextAreaElement_setSelectionRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTemplateElement_get_content = function () { let r = cbb_wf.checkIllegal(this, "HTMLTemplateElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.content; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTemplateElement_get_content, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTemplateElement_get_content, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTemplateElement_get_content, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTemplateElement_get_shadowRoot = function () { let r = cbb_wf.checkIllegal(this, "HTMLTemplateElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shadowRoot; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTemplateElement_get_shadowRoot, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTemplateElement_get_shadowRoot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTemplateElement_get_shadowRoot, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableSectionElement_get_rows = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rows; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_get_rows, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_get_rows, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_get_rows, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableSectionElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableSectionElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableSectionElement_get_ch = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ch; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_get_ch, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_get_ch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_get_ch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableSectionElement_set_ch = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_set_ch, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_set_ch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_set_ch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableSectionElement_get_chOff = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.chOff; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_get_chOff, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_get_chOff, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_get_chOff, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableSectionElement_set_chOff = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_set_chOff, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_set_chOff, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.chOff = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_set_chOff, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableSectionElement_get_vAlign = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vAlign; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_get_vAlign, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_get_vAlign, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_get_vAlign, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableSectionElement_set_vAlign = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_set_vAlign, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_set_vAlign, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vAlign = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_set_vAlign, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableSectionElement_deleteRow = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteRow.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_deleteRow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_deleteRow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_deleteRow, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableSectionElement_insertRow = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableSectionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertRow.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableSectionElement_insertRow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableSectionElement_insertRow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableSectionElement_insertRow, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableRowElement_get_rowIndex = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rowIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_rowIndex, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_rowIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_rowIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_get_sectionRowIndex = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sectionRowIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_sectionRowIndex, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_sectionRowIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_sectionRowIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_get_cells = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cells; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_cells, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_cells, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_cells, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableRowElement_get_ch = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ch; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_ch, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_ch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_ch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_set_ch = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_set_ch, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_set_ch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_set_ch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableRowElement_get_chOff = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.chOff; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_chOff, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_chOff, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_chOff, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_set_chOff = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_set_chOff, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_set_chOff, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.chOff = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_set_chOff, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableRowElement_get_vAlign = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vAlign; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_vAlign, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_vAlign, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_vAlign, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_set_vAlign = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_set_vAlign, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_set_vAlign, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vAlign = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_set_vAlign, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableRowElement_get_bgColor = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_get_bgColor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_get_bgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_get_bgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableRowElement_set_bgColor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_set_bgColor, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_set_bgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.bgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_set_bgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableRowElement_deleteCell = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteCell.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_deleteCell, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_deleteCell, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_deleteCell, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableRowElement_insertCell = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableRowElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertCell.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableRowElement_insertCell, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableRowElement_insertCell, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableRowElement_insertCell, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_get_caption = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.caption; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_caption, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_caption, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_caption, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_caption = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_caption, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_caption, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.caption = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_caption, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_tHead = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tHead; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_tHead, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_tHead, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_tHead, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_tHead = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_tHead, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_tHead, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.tHead = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_tHead, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_tFoot = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tFoot; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_tFoot, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_tFoot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_tFoot, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_tFoot = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_tFoot, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_tFoot, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.tFoot = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_tFoot, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_tBodies = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tBodies; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_tBodies, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_tBodies, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_tBodies, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_get_rows = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rows; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_rows, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_rows, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_rows, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_border = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.border; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_border, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_border, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_border, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_border = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_border, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_border, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.border = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_border, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_frame = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.frame; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_frame, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_frame, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_frame, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_frame = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_frame, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_frame, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.frame = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_frame, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_rules = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rules; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_rules, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_rules, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_rules, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_rules = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_rules, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_rules, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rules = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_rules, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_summary = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.summary; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_summary, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_summary, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_summary, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_summary = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_summary, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_summary, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.summary = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_summary, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_bgColor = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_bgColor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_bgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_bgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_bgColor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_bgColor, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_bgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.bgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_bgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_cellPadding = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cellPadding; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_cellPadding, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_cellPadding, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_cellPadding, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_cellPadding = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_cellPadding, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_cellPadding, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cellPadding = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_cellPadding, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_get_cellSpacing = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cellSpacing; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_get_cellSpacing, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_get_cellSpacing, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_get_cellSpacing, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableElement_set_cellSpacing = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableElement_set_cellSpacing, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_set_cellSpacing, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cellSpacing = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_set_cellSpacing, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableElement_createCaption = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createCaption.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_createCaption, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_createCaption, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_createCaption, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_createTBody = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createTBody.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_createTBody, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_createTBody, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_createTBody, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_createTFoot = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createTFoot.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_createTFoot, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_createTFoot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_createTFoot, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_createTHead = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createTHead.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_createTHead, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_createTHead, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_createTHead, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_deleteCaption = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteCaption.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_deleteCaption, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_deleteCaption, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_deleteCaption, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_deleteRow = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteRow.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_deleteRow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_deleteRow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_deleteRow, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_deleteTFoot = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteTFoot.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_deleteTFoot, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_deleteTFoot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_deleteTFoot, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_deleteTHead = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteTHead.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_deleteTHead, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_deleteTHead, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_deleteTHead, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableElement_insertRow = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertRow.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableElement_insertRow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableElement_insertRow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableElement_insertRow, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLTableColElement_get_span = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.span; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_get_span, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_get_span, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_get_span, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableColElement_set_span = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_set_span, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_set_span, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.span = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_set_span, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableColElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableColElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableColElement_get_ch = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ch; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_get_ch, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_get_ch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_get_ch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableColElement_set_ch = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_set_ch, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_set_ch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_set_ch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableColElement_get_chOff = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.chOff; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_get_chOff, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_get_chOff, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_get_chOff, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableColElement_set_chOff = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_set_chOff, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_set_chOff, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.chOff = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_set_chOff, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableColElement_get_vAlign = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vAlign; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_get_vAlign, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_get_vAlign, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_get_vAlign, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableColElement_set_vAlign = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_set_vAlign, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_set_vAlign, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vAlign = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_set_vAlign, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableColElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableColElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableColElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableColElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableColElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableColElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_colSpan = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.colSpan; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_colSpan, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_colSpan, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_colSpan, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_colSpan = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_colSpan, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_colSpan, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.colSpan = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_colSpan, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_rowSpan = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rowSpan; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_rowSpan, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_rowSpan, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_rowSpan, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_rowSpan = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_rowSpan, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_rowSpan, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rowSpan = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_rowSpan, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_headers = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.headers; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_headers, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_headers, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_headers, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_headers = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_headers, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_headers, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.headers = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_headers, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_cellIndex = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cellIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_cellIndex, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_cellIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_cellIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_axis = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.axis; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_axis, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_axis, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_axis, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_axis = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_axis, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_axis, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.axis = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_axis, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_ch = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ch; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_ch, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_ch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_ch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_ch = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_ch, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_ch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_ch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_chOff = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.chOff; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_chOff, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_chOff, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_chOff, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_chOff = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_chOff, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_chOff, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.chOff = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_chOff, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_noWrap = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.noWrap; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_noWrap, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_noWrap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_noWrap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_noWrap = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_noWrap, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_noWrap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.noWrap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_noWrap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_vAlign = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vAlign; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_vAlign, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_vAlign, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_vAlign, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_vAlign = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_vAlign, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_vAlign, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vAlign = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_vAlign, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_bgColor = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_bgColor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_bgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_bgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_bgColor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_bgColor, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_bgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.bgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_bgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_abbr = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.abbr; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_abbr, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_abbr, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_abbr, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_abbr = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_abbr, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_abbr, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.abbr = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_abbr, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCellElement_get_scope = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scope; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_get_scope, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_get_scope, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_get_scope, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCellElement_set_scope = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCellElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCellElement_set_scope, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCellElement_set_scope, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scope = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCellElement_set_scope, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLTableCaptionElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLTableCaptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLTableCaptionElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLTableCaptionElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCaptionElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLTableCaptionElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLTableCaptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLTableCaptionElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLTableCaptionElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLTableCaptionElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLStyleElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLStyleElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLStyleElement_get_media = function () { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLStyleElement_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_set_media, set object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLStyleElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLStyleElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLStyleElement_get_sheet = function () { let r = cbb_wf.checkIllegal(this, "HTMLStyleElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLStyleElement_get_sheet, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLStyleElement_get_sheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLStyleElement_get_sheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSourceElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSourceElement_get_srcset = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.srcset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_srcset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_srcset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_srcset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_srcset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_srcset, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_srcset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.srcset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_srcset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSourceElement_get_sizes = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sizes; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_sizes, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_sizes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_sizes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_sizes = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_sizes, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_sizes, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.sizes = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_sizes, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSourceElement_get_media = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_media, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSourceElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSourceElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSourceElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSourceElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSourceElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLSourceElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSourceElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSlotElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLSlotElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSlotElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSlotElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSlotElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSlotElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSlotElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSlotElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLSlotElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSlotElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSlotElement_assign = function () { let r = cbb_wf.checkIllegal(this, "HTMLSlotElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.assign.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSlotElement_assign, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSlotElement_assign, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSlotElement_assign, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSlotElement_assignedElements = function () { let r = cbb_wf.checkIllegal(this, "HTMLSlotElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.assignedElements.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSlotElement_assignedElements, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSlotElement_assignedElements, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSlotElement_assignedElements, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSlotElement_assignedNodes = function () { let r = cbb_wf.checkIllegal(this, "HTMLSlotElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.assignedNodes.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSlotElement_assignedNodes, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSlotElement_assignedNodes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSlotElement_assignedNodes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_get_autocomplete = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autocomplete; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_autocomplete, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_autocomplete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_autocomplete, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_autocomplete = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_autocomplete, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_autocomplete, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autocomplete = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_autocomplete, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_multiple = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.multiple; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_multiple, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_multiple, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_multiple, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_multiple = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_multiple, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_multiple, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.multiple = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_multiple, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_required = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.required; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_required, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_required, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_required, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_required = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_required, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_required, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.required = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_required, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_size = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.size; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_size, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_size, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_size, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_size = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_size, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_size, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.size = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_size, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_options = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.options; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_options, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_options, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_options, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_length = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_length = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_length, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_length, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.length = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_length, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_selectedOptions = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectedOptions; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_selectedOptions, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_selectedOptions, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_selectedOptions, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_selectedIndex = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectedIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_selectedIndex, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_selectedIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_selectedIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_selectedIndex = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_selectedIndex, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_selectedIndex, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectedIndex = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_selectedIndex, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLSelectElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLSelectElement_add = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.add.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_add, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_add, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_item = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_item, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_namedItem = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.namedItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_namedItem, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_namedItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_namedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_remove = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remove.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_remove, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_remove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLSelectElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLSelectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLSelectElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLSelectElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLSelectElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLScriptElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_noModule = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.noModule; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_noModule, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_noModule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_noModule, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_noModule = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_noModule, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_noModule, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.noModule = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_noModule, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_charset = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.charset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_charset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_charset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_charset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_charset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_charset, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_charset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.charset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_charset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_async = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.async; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_async, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_async, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_async, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_async = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_async, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_async, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.async = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_async, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_defer = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defer; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_defer, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_defer, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_defer, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_defer = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_defer, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_defer, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defer = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_defer, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_crossOrigin = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.crossOrigin; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_crossOrigin, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_crossOrigin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_crossOrigin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_crossOrigin = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_crossOrigin, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_crossOrigin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.crossOrigin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_crossOrigin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_text = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.text; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_text, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_text, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_text, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_text, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_text, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.text = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_text, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrerPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_referrerPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_referrerPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_referrerPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_referrerPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_referrerPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.referrerPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_referrerPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_event = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.event; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_event, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_event, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_event, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_event = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_event, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_event, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.event = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_event, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_htmlFor = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.htmlFor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_htmlFor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_htmlFor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_htmlFor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_htmlFor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_htmlFor, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_htmlFor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.htmlFor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_htmlFor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_integrity = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.integrity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_integrity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_integrity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_integrity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_integrity = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_integrity, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_integrity, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.integrity = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_integrity, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLScriptElement_get_fetchPriority = function () { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fetchPriority; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_get_fetchPriority, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_get_fetchPriority, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_get_fetchPriority, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLScriptElement_set_fetchPriority = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLScriptElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLScriptElement_set_fetchPriority, set object'); break case "function": cbb_wf.console.log('[*] HTMLScriptElement_set_fetchPriority, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fetchPriority = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLScriptElement_set_fetchPriority, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLQuoteElement_get_cite = function () { let r = cbb_wf.checkIllegal(this, "HTMLQuoteElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cite; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLQuoteElement_get_cite, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLQuoteElement_get_cite, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLQuoteElement_get_cite, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLQuoteElement_set_cite = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLQuoteElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLQuoteElement_set_cite, set object'); break case "function": cbb_wf.console.log('[*] HTMLQuoteElement_set_cite, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cite = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLQuoteElement_set_cite, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLProgressElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLProgressElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLProgressElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLProgressElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLProgressElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLProgressElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLProgressElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLProgressElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLProgressElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLProgressElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLProgressElement_get_max = function () { let r = cbb_wf.checkIllegal(this, "HTMLProgressElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.max; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLProgressElement_get_max, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLProgressElement_get_max, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLProgressElement_get_max, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLProgressElement_set_max = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLProgressElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLProgressElement_set_max, set object'); break case "function": cbb_wf.console.log('[*] HTMLProgressElement_set_max, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.max = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLProgressElement_set_max, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLProgressElement_get_position = function () { let r = cbb_wf.checkIllegal(this, "HTMLProgressElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.position; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLProgressElement_get_position, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLProgressElement_get_position, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLProgressElement_get_position, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLProgressElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLProgressElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLProgressElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLProgressElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLProgressElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLPreElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLPreElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLPreElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLPreElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLPreElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLPreElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLPreElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLPreElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLPreElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLPreElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLParamElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLParamElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLParamElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLParamElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLParamElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLParamElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLParamElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLParamElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLParamElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLParamElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLParamElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLParamElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLParamElement_get_valueType = function () { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.valueType; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLParamElement_get_valueType, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_get_valueType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_get_valueType, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLParamElement_set_valueType = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLParamElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLParamElement_set_valueType, set object'); break case "function": cbb_wf.console.log('[*] HTMLParamElement_set_valueType, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.valueType = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParamElement_set_valueType, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLParagraphElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLParagraphElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLParagraphElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLParagraphElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParagraphElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLParagraphElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLParagraphElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLParagraphElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLParagraphElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLParagraphElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOutputElement_get_htmlFor = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.htmlFor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_htmlFor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_htmlFor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_htmlFor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_set_htmlFor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_set_htmlFor, set object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_set_htmlFor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.htmlFor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_set_htmlFor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOutputElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOutputElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_get_defaultValue = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_defaultValue, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_defaultValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_defaultValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_set_defaultValue = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_set_defaultValue, set object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_set_defaultValue, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultValue = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_set_defaultValue, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOutputElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOutputElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOutputElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLOutputElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLOutputElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLOutputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOutputElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOutputElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOutputElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLOptionsCollection_get_length = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionsCollection_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionsCollection_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionsCollection_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionsCollection_set_length = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionsCollection_set_length, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionsCollection_set_length, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.length = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionsCollection_set_length, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionsCollection_get_selectedIndex = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectedIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionsCollection_get_selectedIndex, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionsCollection_get_selectedIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionsCollection_get_selectedIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionsCollection_set_selectedIndex = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionsCollection_set_selectedIndex, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionsCollection_set_selectedIndex, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectedIndex = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionsCollection_set_selectedIndex, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionsCollection_add = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.add.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionsCollection_add, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionsCollection_add, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionsCollection_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLOptionsCollection_remove = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remove.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionsCollection_remove, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionsCollection_remove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionsCollection_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLOptionElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_get_label = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.label; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_label, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_label, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_label, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_set_label = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_set_label, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_set_label, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.label = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_set_label, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionElement_get_defaultSelected = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultSelected; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_defaultSelected, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_defaultSelected, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_defaultSelected, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_set_defaultSelected = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_set_defaultSelected, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_set_defaultSelected, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultSelected = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_set_defaultSelected, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionElement_get_selected = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selected; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_selected, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_selected, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_selected, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_set_selected = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_set_selected, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_set_selected, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selected = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_set_selected, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionElement_get_text = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.text; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_text, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_text, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_text, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptionElement_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_set_text, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_set_text, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.text = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_set_text, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptionElement_get_index = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptionElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.index; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptionElement_get_index, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptionElement_get_index, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptionElement_get_index, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptGroupElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptGroupElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptGroupElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptGroupElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptGroupElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptGroupElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptGroupElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptGroupElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptGroupElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptGroupElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOptGroupElement_get_label = function () { let r = cbb_wf.checkIllegal(this, "HTMLOptGroupElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.label; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOptGroupElement_get_label, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOptGroupElement_get_label, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptGroupElement_get_label, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOptGroupElement_set_label = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOptGroupElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOptGroupElement_set_label, set object'); break case "function": cbb_wf.console.log('[*] HTMLOptGroupElement_set_label, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.label = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOptGroupElement_set_label, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_data = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.data; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_data, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_data, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_data, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_data = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_data, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_data, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.data = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_data, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_useMap = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.useMap; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_useMap, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_useMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_useMap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_useMap = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_useMap, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_useMap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.useMap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_useMap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_contentDocument = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentDocument; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_contentDocument, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_contentDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_contentDocument, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_get_contentWindow = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentWindow; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_contentWindow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_contentWindow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_contentWindow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_archive = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.archive; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_archive, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_archive, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_archive, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_archive = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_archive, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_archive, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.archive = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_archive, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_code = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.code; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_code, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_code, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_code, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_code = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_code, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_code, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.code = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_code, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_declare = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.declare; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_declare, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_declare, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_declare, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_declare = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_declare, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_declare, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.declare = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_declare, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_hspace = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hspace; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_hspace, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_hspace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_hspace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_hspace = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_hspace, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_hspace, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hspace = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_hspace, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_standby = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.standby; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_standby, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_standby, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_standby, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_standby = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_standby, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_standby, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.standby = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_standby, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_vspace = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vspace; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_vspace, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_vspace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_vspace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_vspace = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_vspace, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_vspace, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vspace = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_vspace, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_codeBase = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.codeBase; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_codeBase, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_codeBase, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_codeBase, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_codeBase = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_codeBase, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_codeBase, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.codeBase = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_codeBase, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_codeType = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.codeType; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_codeType, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_codeType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_codeType, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_codeType = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_codeType, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_codeType, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.codeType = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_codeType, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_get_border = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.border; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_get_border, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_get_border, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_get_border, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLObjectElement_set_border = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_set_border, set object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_set_border, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.border = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_set_border, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLObjectElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLObjectElement_getSVGDocument = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSVGDocument.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_getSVGDocument, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_getSVGDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_getSVGDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLObjectElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLObjectElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLObjectElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLObjectElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLObjectElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLObjectElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLOListElement_get_reversed = function () { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reversed; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOListElement_get_reversed, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_get_reversed, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_get_reversed, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOListElement_set_reversed = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOListElement_set_reversed, set object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_set_reversed, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.reversed = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_set_reversed, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOListElement_get_start = function () { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.start; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOListElement_get_start, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_get_start, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_get_start, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOListElement_set_start = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOListElement_set_start, set object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_set_start, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.start = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_set_start, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOListElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOListElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOListElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOListElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLOListElement_get_compact = function () { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compact; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLOListElement_get_compact, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_get_compact, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_get_compact, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLOListElement_set_compact = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLOListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLOListElement_set_compact, set object'); break case "function": cbb_wf.console.log('[*] HTMLOListElement_set_compact, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.compact = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLOListElement_set_compact, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLModElement_get_cite = function () { let r = cbb_wf.checkIllegal(this, "HTMLModElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cite; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLModElement_get_cite, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLModElement_get_cite, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLModElement_get_cite, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLModElement_set_cite = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLModElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLModElement_set_cite, set object'); break case "function": cbb_wf.console.log('[*] HTMLModElement_set_cite, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cite = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLModElement_set_cite, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLModElement_get_dateTime = function () { let r = cbb_wf.checkIllegal(this, "HTMLModElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dateTime; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLModElement_get_dateTime, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLModElement_get_dateTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLModElement_get_dateTime, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLModElement_set_dateTime = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLModElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLModElement_set_dateTime, set object'); break case "function": cbb_wf.console.log('[*] HTMLModElement_set_dateTime, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.dateTime = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLModElement_set_dateTime, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMeterElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_min = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.min; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_min, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_min, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_min, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMeterElement_set_min = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_set_min, set object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_set_min, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.min = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_set_min, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_max = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.max; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_max, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_max, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_max, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMeterElement_set_max = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_set_max, set object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_set_max, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.max = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_set_max, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_low = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.low; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_low, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_low, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_low, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMeterElement_set_low = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_set_low, set object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_set_low, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.low = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_set_low, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_high = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.high; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_high, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_high, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_high, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMeterElement_set_high = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_set_high, set object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_set_high, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.high = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_set_high, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_optimum = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.optimum; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_optimum, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_optimum, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_optimum, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMeterElement_set_optimum = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_set_optimum, set object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_set_optimum, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.optimum = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_set_optimum, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMeterElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLMeterElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMeterElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMeterElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMeterElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMetaElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMetaElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMetaElement_get_httpEquiv = function () { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.httpEquiv; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_get_httpEquiv, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_get_httpEquiv, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_get_httpEquiv, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMetaElement_set_httpEquiv = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_set_httpEquiv, set object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_set_httpEquiv, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.httpEquiv = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_set_httpEquiv, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMetaElement_get_content = function () { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.content; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_get_content, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_get_content, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_get_content, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMetaElement_set_content = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_set_content, set object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_set_content, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.content = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_set_content, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMetaElement_get_scheme = function () { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scheme; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_get_scheme, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_get_scheme, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_get_scheme, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMetaElement_set_scheme = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_set_scheme, set object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_set_scheme, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scheme = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_set_scheme, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMetaElement_get_media = function () { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMetaElement_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMetaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMetaElement_set_media, set object'); break case "function": cbb_wf.console.log('[*] HTMLMetaElement_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMetaElement_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMenuElement_get_compact = function () { let r = cbb_wf.checkIllegal(this, "HTMLMenuElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compact; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMenuElement_get_compact, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMenuElement_get_compact, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMenuElement_get_compact, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMenuElement_set_compact = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMenuElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMenuElement_set_compact, set object'); break case "function": cbb_wf.console.log('[*] HTMLMenuElement_set_compact, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.compact = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMenuElement_set_compact, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_error = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.error; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_error, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_error, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_error, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_currentSrc = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentSrc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_currentSrc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_currentSrc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_currentSrc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_crossOrigin = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.crossOrigin; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_crossOrigin, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_crossOrigin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_crossOrigin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_crossOrigin = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_crossOrigin, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_crossOrigin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.crossOrigin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_crossOrigin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_networkState = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.networkState; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_networkState, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_networkState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_networkState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_preload = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_preload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_preload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_preload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_preload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_preload, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_preload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.preload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_preload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_buffered = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.buffered; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_buffered, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_buffered, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_buffered, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.readyState; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_readyState, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_readyState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_readyState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_seeking = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.seeking; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_seeking, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_seeking, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_seeking, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_currentTime = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentTime; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_currentTime, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_currentTime, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_currentTime, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_currentTime = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_currentTime, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_currentTime, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.currentTime = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_currentTime, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_duration = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.duration; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_duration, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_duration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_duration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_paused = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.paused; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_paused, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_paused, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_paused, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_defaultPlaybackRate = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultPlaybackRate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_defaultPlaybackRate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_defaultPlaybackRate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_defaultPlaybackRate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_defaultPlaybackRate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_defaultPlaybackRate, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_defaultPlaybackRate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultPlaybackRate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_defaultPlaybackRate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_playbackRate = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.playbackRate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_playbackRate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_playbackRate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_playbackRate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_playbackRate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_playbackRate, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_playbackRate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.playbackRate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_playbackRate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_played = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.played; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_played, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_played, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_played, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_seekable = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.seekable; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_seekable, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_seekable, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_seekable, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_ended = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ended; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_ended, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_ended, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_ended, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_autoplay = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autoplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_autoplay, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_autoplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_autoplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_autoplay = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_autoplay, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_autoplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autoplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_autoplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_loop = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.loop; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_loop, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_loop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_loop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_loop = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_loop, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_loop, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.loop = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_loop, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_controls = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.controls; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_controls, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_controls, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_controls, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_controls = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_controls, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_controls, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.controls = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_controls, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_controlsList = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.controlsList; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_controlsList, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_controlsList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_controlsList, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_controlsList = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_controlsList, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_controlsList, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.controlsList = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_controlsList, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_volume = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.volume; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_volume, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_volume, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_volume, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_volume = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_volume, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_volume, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.volume = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_volume, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_muted = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.muted; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_muted, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_muted, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_muted, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_muted = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_muted, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_muted, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.muted = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_muted, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_defaultMuted = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultMuted; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_defaultMuted, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_defaultMuted, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_defaultMuted, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_defaultMuted = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_defaultMuted, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_defaultMuted, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultMuted = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_defaultMuted, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_textTracks = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textTracks; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_textTracks, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_textTracks, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_textTracks, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_webkitAudioDecodedByteCount = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitAudioDecodedByteCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_webkitAudioDecodedByteCount, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_webkitAudioDecodedByteCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_webkitAudioDecodedByteCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_webkitVideoDecodedByteCount = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitVideoDecodedByteCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_webkitVideoDecodedByteCount, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_webkitVideoDecodedByteCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_webkitVideoDecodedByteCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_onencrypted = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onencrypted; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_onencrypted, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_onencrypted, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_onencrypted, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_onencrypted = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_onencrypted, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_onencrypted, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onencrypted = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_onencrypted, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_onwaitingforkey = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwaitingforkey; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_onwaitingforkey, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_onwaitingforkey, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_onwaitingforkey, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_onwaitingforkey = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_onwaitingforkey, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_onwaitingforkey, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwaitingforkey = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_onwaitingforkey, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_srcObject = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.srcObject; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_srcObject, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_srcObject, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_srcObject, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_srcObject = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_srcObject, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_srcObject, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.srcObject = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_srcObject, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_addTextTrack = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.addTextTrack.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_addTextTrack, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_addTextTrack, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_addTextTrack, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_canPlayType = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.canPlayType.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_canPlayType, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_canPlayType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_canPlayType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_captureStream = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.captureStream.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_captureStream, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_captureStream, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_captureStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_load = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.load.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_load, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_load, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_load, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_pause = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pause.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_pause, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_pause, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_pause, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_play = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.play.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_play, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_play, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_play, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_get_preservesPitch = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.preservesPitch; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_preservesPitch, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_preservesPitch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_preservesPitch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_preservesPitch = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_preservesPitch, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_preservesPitch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.preservesPitch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_preservesPitch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_get_sinkId = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sinkId; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_sinkId, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_sinkId, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_sinkId, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_remote = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remote; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_remote, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_remote, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_remote, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_get_disableRemotePlayback = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disableRemotePlayback; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_disableRemotePlayback, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_disableRemotePlayback, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_disableRemotePlayback, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_set_disableRemotePlayback = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_set_disableRemotePlayback, set object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_set_disableRemotePlayback, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disableRemotePlayback = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_set_disableRemotePlayback, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMediaElement_setSinkId = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setSinkId.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_setSinkId, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_setSinkId, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_setSinkId, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMediaElement_get_mediaKeys = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.mediaKeys; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_get_mediaKeys, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_get_mediaKeys, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_get_mediaKeys, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMediaElement_setMediaKeys = function () { let r = cbb_wf.checkIllegal(this, "HTMLMediaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setMediaKeys.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMediaElement_setMediaKeys, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMediaElement_setMediaKeys, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMediaElement_setMediaKeys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMarqueeElement_get_behavior = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.behavior; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_behavior, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_behavior, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_behavior, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_behavior = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_behavior, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_behavior, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.behavior = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_behavior, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_bgColor = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_bgColor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_bgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_bgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_bgColor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_bgColor, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_bgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.bgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_bgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_direction = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.direction; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_direction, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_direction, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_direction, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_direction = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_direction, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_direction, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.direction = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_direction, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_hspace = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hspace; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_hspace, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_hspace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_hspace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_hspace = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_hspace, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_hspace, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hspace = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_hspace, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_loop = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.loop; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_loop, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_loop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_loop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_loop = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_loop, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_loop, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.loop = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_loop, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_scrollAmount = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollAmount; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_scrollAmount, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_scrollAmount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_scrollAmount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_scrollAmount = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_scrollAmount, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_scrollAmount, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scrollAmount = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_scrollAmount, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_scrollDelay = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollDelay; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_scrollDelay, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_scrollDelay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_scrollDelay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_scrollDelay = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_scrollDelay, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_scrollDelay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scrollDelay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_scrollDelay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_trueSpeed = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.trueSpeed; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_trueSpeed, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_trueSpeed, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_trueSpeed, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_trueSpeed = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_trueSpeed, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_trueSpeed, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.trueSpeed = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_trueSpeed, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_vspace = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vspace; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_vspace, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_vspace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_vspace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_vspace = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_vspace, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_vspace, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vspace = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_vspace, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMarqueeElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMarqueeElement_start = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.start.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_start, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_start, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMarqueeElement_stop = function () { let r = cbb_wf.checkIllegal(this, "HTMLMarqueeElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stop.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMarqueeElement_stop, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMarqueeElement_stop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMarqueeElement_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLMapElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMapElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMapElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMapElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLMapElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLMapElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLMapElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMapElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLMapElement_get_areas = function () { let r = cbb_wf.checkIllegal(this, "HTMLMapElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.areas; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLMapElement_get_areas, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLMapElement_get_areas, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLMapElement_get_areas, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_href = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_href, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_href, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.href = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_href, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_crossOrigin = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.crossOrigin; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_crossOrigin, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_crossOrigin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_crossOrigin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_crossOrigin = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_crossOrigin, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_crossOrigin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.crossOrigin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_crossOrigin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_rel = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_rel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_rel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_rel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_rel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_rel, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_rel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_rel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_relList = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.relList; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_relList, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_relList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_relList, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_relList = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_relList, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_relList, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.relList = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_relList, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_media = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_media, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_hreflang = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hreflang; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_hreflang, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_hreflang, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_hreflang, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_hreflang = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_hreflang, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_hreflang, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hreflang = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_hreflang, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_as = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.as; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_as, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_as, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_as, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_as = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_as, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_as, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.as = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_as, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrerPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_referrerPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_referrerPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_referrerPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_referrerPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_referrerPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.referrerPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_referrerPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_sizes = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sizes; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_sizes, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_sizes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_sizes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_sizes = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_sizes, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_sizes, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.sizes = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_sizes, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_imageSrcset = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.imageSrcset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_imageSrcset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_imageSrcset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_imageSrcset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_imageSrcset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_imageSrcset, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_imageSrcset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.imageSrcset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_imageSrcset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_imageSizes = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.imageSizes; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_imageSizes, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_imageSizes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_imageSizes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_imageSizes = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_imageSizes, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_imageSizes, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.imageSizes = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_imageSizes, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_charset = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.charset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_charset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_charset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_charset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_charset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_charset, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_charset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.charset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_charset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_rev = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rev; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_rev, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_rev, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_rev, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_rev = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_rev, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_rev, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rev = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_rev, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_target = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_target = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_target, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_target, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.target = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_target, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_sheet = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_sheet, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_sheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_sheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_get_integrity = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.integrity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_integrity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_integrity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_integrity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_integrity = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_integrity, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_integrity, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.integrity = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_integrity, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLinkElement_get_fetchPriority = function () { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fetchPriority; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_get_fetchPriority, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_get_fetchPriority, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_get_fetchPriority, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLinkElement_set_fetchPriority = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLinkElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLinkElement_set_fetchPriority, set object'); break case "function": cbb_wf.console.log('[*] HTMLLinkElement_set_fetchPriority, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fetchPriority = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLinkElement_set_fetchPriority, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLegendElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLLegendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLegendElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLegendElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLegendElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLegendElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLLegendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLegendElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLegendElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLegendElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLegendElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLegendElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLegendElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLLegendElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLegendElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLabelElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLLabelElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLabelElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLabelElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLabelElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLabelElement_get_htmlFor = function () { let r = cbb_wf.checkIllegal(this, "HTMLLabelElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.htmlFor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLabelElement_get_htmlFor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLabelElement_get_htmlFor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLabelElement_get_htmlFor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLabelElement_set_htmlFor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLabelElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLabelElement_set_htmlFor, set object'); break case "function": cbb_wf.console.log('[*] HTMLLabelElement_set_htmlFor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.htmlFor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLabelElement_set_htmlFor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLabelElement_get_control = function () { let r = cbb_wf.checkIllegal(this, "HTMLLabelElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.control; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLabelElement_get_control, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLabelElement_get_control, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLabelElement_get_control, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLIElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLLIElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLIElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLIElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLIElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLIElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLIElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLIElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLLIElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLIElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLLIElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLLIElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLLIElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLLIElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLIElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLLIElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLLIElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLLIElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLLIElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLLIElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_accept = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.accept; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_accept, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_accept, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_accept, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_accept = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_accept, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_accept, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.accept = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_accept, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_alt = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.alt; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_alt, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_alt, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_alt, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_alt = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_alt, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_alt, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.alt = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_alt, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_autocomplete = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autocomplete; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_autocomplete, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_autocomplete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_autocomplete, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_autocomplete = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_autocomplete, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_autocomplete, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autocomplete = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_autocomplete, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_defaultChecked = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultChecked; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_defaultChecked, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_defaultChecked, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_defaultChecked, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_defaultChecked = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_defaultChecked, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_defaultChecked, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultChecked = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_defaultChecked, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_checked = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checked; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_checked, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_checked, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_checked, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_checked = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_checked, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_checked, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.checked = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_checked, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_dirName = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dirName; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_dirName, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_dirName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_dirName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_dirName = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_dirName, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_dirName, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.dirName = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_dirName, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_get_files = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.files; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_files, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_files, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_files, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_files = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_files, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_files, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.files = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_files, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_formAction = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formAction; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_formAction, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_formAction, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_formAction, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_formAction = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_formAction, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_formAction, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formAction = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_formAction, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_formEnctype = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formEnctype; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_formEnctype, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_formEnctype, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_formEnctype, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_formEnctype = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_formEnctype, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_formEnctype, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formEnctype = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_formEnctype, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_formMethod = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formMethod; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_formMethod, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_formMethod, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_formMethod, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_formMethod = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_formMethod, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_formMethod, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formMethod = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_formMethod, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_formNoValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formNoValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_formNoValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_formNoValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_formNoValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_formNoValidate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_formNoValidate, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_formNoValidate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formNoValidate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_formNoValidate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_formTarget = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formTarget; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_formTarget, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_formTarget, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_formTarget, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_formTarget = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_formTarget, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_formTarget, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formTarget = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_formTarget, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_indeterminate = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.indeterminate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_indeterminate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_indeterminate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_indeterminate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_indeterminate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_indeterminate, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_indeterminate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.indeterminate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_indeterminate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_list = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.list; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_list, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_list, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_list, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_get_max = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.max; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_max, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_max, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_max, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_max = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_max, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_max, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.max = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_max, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_maxLength = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.maxLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_maxLength, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_maxLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_maxLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_maxLength = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_maxLength, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_maxLength, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.maxLength = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_maxLength, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_min = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.min; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_min, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_min, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_min, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_min = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_min, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_min, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.min = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_min, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_minLength = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.minLength; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_minLength, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_minLength, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_minLength, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_minLength = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_minLength, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_minLength, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.minLength = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_minLength, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_multiple = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.multiple; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_multiple, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_multiple, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_multiple, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_multiple = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_multiple, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_multiple, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.multiple = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_multiple, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_pattern = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pattern; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_pattern, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_pattern, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_pattern, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_pattern = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_pattern, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_pattern, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.pattern = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_pattern, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_placeholder = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.placeholder; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_placeholder, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_placeholder, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_placeholder, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_placeholder = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_placeholder, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_placeholder, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.placeholder = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_placeholder, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_readOnly = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.readOnly; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_readOnly, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_readOnly, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_readOnly, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_readOnly = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_readOnly, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_readOnly, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.readOnly = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_readOnly, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_required = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.required; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_required, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_required, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_required, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_required = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_required, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_required, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.required = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_required, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_size = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.size; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_size, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_size, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_size, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_size = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_size, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_size, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.size = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_size, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_step = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.step; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_step, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_step, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_step, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_step = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_step, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_step, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.step = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_step, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_defaultValue = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_defaultValue, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_defaultValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_defaultValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_defaultValue = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_defaultValue, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_defaultValue, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.defaultValue = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_defaultValue, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_valueAsDate = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.valueAsDate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_valueAsDate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_valueAsDate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_valueAsDate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_valueAsDate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_valueAsDate, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_valueAsDate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.valueAsDate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_valueAsDate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_valueAsNumber = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.valueAsNumber; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_valueAsNumber, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_valueAsNumber, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_valueAsNumber, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_valueAsNumber = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_valueAsNumber, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_valueAsNumber, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.valueAsNumber = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_valueAsNumber, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_get_selectionStart = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectionStart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_selectionStart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_selectionStart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_selectionStart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_selectionStart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_selectionStart, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_selectionStart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectionStart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_selectionStart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_selectionEnd = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectionEnd; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_selectionEnd, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_selectionEnd, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_selectionEnd, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_selectionEnd = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_selectionEnd, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_selectionEnd, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectionEnd = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_selectionEnd, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_selectionDirection = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectionDirection; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_selectionDirection, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_selectionDirection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_selectionDirection, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_selectionDirection = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_selectionDirection, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_selectionDirection, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectionDirection = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_selectionDirection, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_useMap = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.useMap; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_useMap, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_useMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_useMap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_useMap = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_useMap, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_useMap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.useMap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_useMap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_webkitdirectory = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitdirectory; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_webkitdirectory, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_webkitdirectory, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_webkitdirectory, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_webkitdirectory = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_webkitdirectory, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_webkitdirectory, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.webkitdirectory = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_webkitdirectory, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_get_incremental = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.incremental; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_incremental, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_incremental, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_incremental, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_set_incremental = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLInputElement_set_incremental, set object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_set_incremental, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.incremental = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_set_incremental, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLInputElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_select = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.select.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_select, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_select, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_select, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_setRangeText = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setRangeText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_setRangeText, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_setRangeText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_setRangeText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_setSelectionRange = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setSelectionRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_setSelectionRange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_setSelectionRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_setSelectionRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_stepDown = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stepDown.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_stepDown, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_stepDown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_stepDown, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_stepUp = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stepUp.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_stepUp, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_stepUp, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_stepUp, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLInputElement_get_webkitEntries = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitEntries; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_get_webkitEntries, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_get_webkitEntries, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_get_webkitEntries, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLInputElement_showPicker = function () { let r = cbb_wf.checkIllegal(this, "HTMLInputElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.showPicker.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLInputElement_showPicker, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLInputElement_showPicker, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLInputElement_showPicker, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLImageElement_get_alt = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.alt; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_alt, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_alt, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_alt, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_alt = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_alt, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_alt, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.alt = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_alt, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_srcset = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.srcset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_srcset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_srcset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_srcset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_srcset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_srcset, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_srcset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.srcset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_srcset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_sizes = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sizes; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_sizes, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_sizes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_sizes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_sizes = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_sizes, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_sizes, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.sizes = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_sizes, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_crossOrigin = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.crossOrigin; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_crossOrigin, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_crossOrigin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_crossOrigin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_crossOrigin = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_crossOrigin, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_crossOrigin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.crossOrigin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_crossOrigin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_useMap = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.useMap; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_useMap, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_useMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_useMap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_useMap = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_useMap, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_useMap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.useMap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_useMap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_isMap = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isMap; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_isMap, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_isMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_isMap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_isMap = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_isMap, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_isMap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.isMap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_isMap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_naturalWidth = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.naturalWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_naturalWidth, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_naturalWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_naturalWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_get_naturalHeight = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.naturalHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_naturalHeight, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_naturalHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_naturalHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_get_complete = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.complete; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_complete, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_complete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_complete, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_get_currentSrc = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentSrc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_currentSrc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_currentSrc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_currentSrc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrerPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_referrerPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_referrerPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_referrerPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_referrerPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_referrerPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.referrerPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_referrerPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_decoding = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.decoding; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_decoding, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_decoding, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_decoding, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_decoding = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_decoding, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_decoding, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.decoding = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_decoding, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_lowsrc = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lowsrc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_lowsrc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_lowsrc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_lowsrc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_lowsrc = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_lowsrc, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_lowsrc, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.lowsrc = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_lowsrc, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_hspace = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hspace; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_hspace, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_hspace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_hspace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_hspace = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_hspace, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_hspace, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hspace = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_hspace, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_vspace = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vspace; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_vspace, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_vspace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_vspace, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_vspace = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_vspace, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_vspace, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vspace = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_vspace, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_longDesc = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.longDesc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_longDesc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_longDesc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_longDesc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_longDesc = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_longDesc, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_longDesc, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.longDesc = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_longDesc, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_border = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.border; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_border, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_border, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_border, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_border = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_border, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_border, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.border = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_border, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_x = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.x; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_x, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_x, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_x, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_get_y = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.y; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_y, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_y, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_y, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_decode = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.decode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_decode, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_decode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_decode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLImageElement_get_fetchPriority = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fetchPriority; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_fetchPriority, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_fetchPriority, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_fetchPriority, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_fetchPriority = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_fetchPriority, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_fetchPriority, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fetchPriority = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_fetchPriority, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLImageElement_get_loading = function () { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.loading; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLImageElement_get_loading, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_get_loading, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_get_loading, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLImageElement_set_loading = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLImageElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLImageElement_set_loading, set object'); break case "function": cbb_wf.console.log('[*] HTMLImageElement_set_loading, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.loading = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLImageElement_set_loading, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_srcdoc = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.srcdoc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_srcdoc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_srcdoc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_srcdoc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_srcdoc = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_srcdoc, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_srcdoc, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.srcdoc = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_srcdoc, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_sandbox = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.sandbox; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_sandbox, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_sandbox, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_sandbox, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_sandbox = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_sandbox, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_sandbox, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.sandbox = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_sandbox, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_allowFullscreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.allowFullscreen; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_allowFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_allowFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_allowFullscreen, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_allowFullscreen = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_allowFullscreen, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_allowFullscreen, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.allowFullscreen = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_allowFullscreen, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_contentDocument = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentDocument; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_contentDocument, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_contentDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_contentDocument, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_get_contentWindow = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentWindow; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_contentWindow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_contentWindow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_contentWindow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrerPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_referrerPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_referrerPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_referrerPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_referrerPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_referrerPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.referrerPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_referrerPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_csp = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.csp; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_csp, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_csp, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_csp, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_csp = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_csp, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_csp, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.csp = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_csp, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_allow = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.allow; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_allow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_allow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_allow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_allow = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_allow, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_allow, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.allow = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_allow, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_featurePolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.featurePolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_featurePolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_featurePolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_featurePolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_scrolling = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrolling; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_scrolling, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_scrolling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_scrolling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_scrolling = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_scrolling, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_scrolling, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scrolling = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_scrolling, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_frameBorder = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.frameBorder; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_frameBorder, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_frameBorder, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_frameBorder, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_frameBorder = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_frameBorder, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_frameBorder, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.frameBorder = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_frameBorder, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_longDesc = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.longDesc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_longDesc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_longDesc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_longDesc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_longDesc = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_longDesc, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_longDesc, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.longDesc = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_longDesc, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_marginHeight = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.marginHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_marginHeight, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_marginHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_marginHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_marginHeight = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_marginHeight, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_marginHeight, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.marginHeight = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_marginHeight, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_marginWidth = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.marginWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_marginWidth, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_marginWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_marginWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_marginWidth = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_marginWidth, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_marginWidth, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.marginWidth = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_marginWidth, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_getSVGDocument = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSVGDocument.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_getSVGDocument, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_getSVGDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_getSVGDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLIFrameElement_get_loading = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.loading; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_loading, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_loading, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_loading, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_loading = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_loading, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_loading, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.loading = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_loading, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLIFrameElement_get_allowPaymentRequest = function () { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.allowPaymentRequest; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_get_allowPaymentRequest, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_get_allowPaymentRequest, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_get_allowPaymentRequest, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLIFrameElement_set_allowPaymentRequest = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLIFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLIFrameElement_set_allowPaymentRequest, set object'); break case "function": cbb_wf.console.log('[*] HTMLIFrameElement_set_allowPaymentRequest, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.allowPaymentRequest = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLIFrameElement_set_allowPaymentRequest, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHtmlElement_get_version = function () { let r = cbb_wf.checkIllegal(this, "HTMLHtmlElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.version; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHtmlElement_get_version, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHtmlElement_get_version, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHtmlElement_get_version, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHtmlElement_set_version = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHtmlElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHtmlElement_set_version, set object'); break case "function": cbb_wf.console.log('[*] HTMLHtmlElement_set_version, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.version = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHtmlElement_set_version, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHeadingElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLHeadingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHeadingElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHeadingElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHeadingElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHeadingElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHeadingElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHeadingElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLHeadingElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHeadingElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHRElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHRElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHRElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHRElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHRElement_get_color = function () { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.color; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHRElement_get_color, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_get_color, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_get_color, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHRElement_set_color = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHRElement_set_color, set object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_set_color, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.color = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_set_color, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHRElement_get_noShade = function () { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.noShade; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHRElement_get_noShade, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_get_noShade, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_get_noShade, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHRElement_set_noShade = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHRElement_set_noShade, set object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_set_noShade, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.noShade = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_set_noShade, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHRElement_get_size = function () { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.size; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHRElement_get_size, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_get_size, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_get_size, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHRElement_set_size = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHRElement_set_size, set object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_set_size, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.size = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_set_size, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLHRElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLHRElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLHRElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLHRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLHRElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLHRElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLHRElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_cols = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cols; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_cols, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_cols, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_cols, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_cols = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_cols, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_cols, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cols = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_cols, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_rows = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rows; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_rows, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_rows, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_rows, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_rows = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_rows, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_rows, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rows = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_rows, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onblur = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onblur; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onblur, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onblur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onblur, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onblur = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onblur, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onblur, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onblur = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onblur, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onerror, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onerror, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onfocus = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onfocus, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onfocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onfocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onfocus = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onfocus, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onfocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onfocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onload = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onload, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onresize; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onresize, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onresize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onresize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onresize, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onresize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onresize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onresize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onscroll = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onscroll; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onscroll, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onscroll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onscroll, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onscroll = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onscroll, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onscroll, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onscroll = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onscroll, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onafterprint = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onafterprint; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onafterprint, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onafterprint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onafterprint, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onafterprint = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onafterprint, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onafterprint, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onafterprint = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onafterprint, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onbeforeprint = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforeprint; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onbeforeprint, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onbeforeprint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onbeforeprint, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onbeforeprint = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onbeforeprint, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onbeforeprint, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforeprint = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onbeforeprint, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onbeforeunload = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforeunload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onbeforeunload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onbeforeunload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onbeforeunload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onbeforeunload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onbeforeunload, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onbeforeunload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforeunload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onbeforeunload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onhashchange = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onhashchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onhashchange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onhashchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onhashchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onhashchange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onhashchange, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onhashchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onhashchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onhashchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onlanguagechange = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onlanguagechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onlanguagechange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onlanguagechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onlanguagechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onlanguagechange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onlanguagechange, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onlanguagechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onlanguagechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onlanguagechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onmessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onmessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onmessage, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onmessage, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmessage = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onmessageerror = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmessageerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onmessageerror, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onmessageerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onmessageerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onmessageerror = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onmessageerror, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onmessageerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmessageerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onmessageerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onoffline = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onoffline; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onoffline, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onoffline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onoffline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onoffline = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onoffline, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onoffline, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onoffline = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onoffline, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_ononline = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ononline; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_ononline, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_ononline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_ononline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_ononline = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_ononline, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_ononline, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ononline = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_ononline, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onpagehide = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpagehide; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onpagehide, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onpagehide, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onpagehide, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onpagehide = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onpagehide, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onpagehide, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpagehide = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onpagehide, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onpageshow = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpageshow; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onpageshow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onpageshow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onpageshow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onpageshow = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onpageshow, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onpageshow, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpageshow = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onpageshow, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onpopstate = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpopstate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onpopstate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onpopstate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onpopstate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onpopstate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onpopstate, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onpopstate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpopstate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onpopstate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onrejectionhandled = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onrejectionhandled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onrejectionhandled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onrejectionhandled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onrejectionhandled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onrejectionhandled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onrejectionhandled, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onrejectionhandled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onrejectionhandled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onrejectionhandled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onstorage = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onstorage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onstorage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onstorage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onstorage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onstorage = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onstorage, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onstorage, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onstorage = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onstorage, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onunhandledrejection = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onunhandledrejection; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onunhandledrejection, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onunhandledrejection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onunhandledrejection, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onunhandledrejection = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onunhandledrejection, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onunhandledrejection, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onunhandledrejection = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onunhandledrejection, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameSetElement_get_onunload = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onunload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onunload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_get_onunload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_get_onunload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameSetElement_set_onunload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onunload, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameSetElement_set_onunload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onunload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameSetElement_set_onunload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_scrolling = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrolling; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_scrolling, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_scrolling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_scrolling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_scrolling = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_scrolling, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_scrolling, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scrolling = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_scrolling, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_frameBorder = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.frameBorder; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_frameBorder, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_frameBorder, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_frameBorder, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_frameBorder = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_frameBorder, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_frameBorder, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.frameBorder = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_frameBorder, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_longDesc = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.longDesc; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_longDesc, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_longDesc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_longDesc, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_longDesc = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_longDesc, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_longDesc, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.longDesc = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_longDesc, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_noResize = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.noResize; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_noResize, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_noResize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_noResize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_noResize = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_noResize, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_noResize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.noResize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_noResize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_contentDocument = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentDocument; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_contentDocument, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_contentDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_contentDocument, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_get_contentWindow = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentWindow; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_contentWindow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_contentWindow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_contentWindow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_get_marginHeight = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.marginHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_marginHeight, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_marginHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_marginHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_marginHeight = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_marginHeight, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_marginHeight, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.marginHeight = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_marginHeight, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFrameElement_get_marginWidth = function () { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.marginWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_get_marginWidth, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_get_marginWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_get_marginWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFrameElement_set_marginWidth = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFrameElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFrameElement_set_marginWidth, set object'); break case "function": cbb_wf.console.log('[*] HTMLFrameElement_set_marginWidth, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.marginWidth = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFrameElement_set_marginWidth, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_acceptCharset = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.acceptCharset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_acceptCharset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_acceptCharset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_acceptCharset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_acceptCharset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_acceptCharset, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_acceptCharset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.acceptCharset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_acceptCharset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_action = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.action; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_action, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_action, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_action, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_action = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_action, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_action, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.action = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_action, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_autocomplete = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autocomplete; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_autocomplete, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_autocomplete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_autocomplete, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_autocomplete = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_autocomplete, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_autocomplete, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autocomplete = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_autocomplete, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_enctype = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.enctype; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_enctype, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_enctype, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_enctype, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_enctype = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_enctype, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_enctype, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.enctype = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_enctype, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_encoding = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.encoding; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_encoding, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_encoding, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_encoding, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_encoding = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_encoding, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_encoding, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.encoding = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_encoding, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_method = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.method; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_method, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_method, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_method, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_method = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_method, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_method, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.method = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_method, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_noValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.noValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_noValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_noValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_noValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_noValidate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_noValidate, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_noValidate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.noValidate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_noValidate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_target = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_set_target = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFormElement_set_target, set object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_set_target, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.target = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_set_target, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFormElement_get_elements = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elements; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_elements, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_elements, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_elements, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_get_length = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFormElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFormElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFormElement_requestSubmit = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requestSubmit.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_requestSubmit, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_requestSubmit, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_requestSubmit, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFormElement_reset = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reset.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_reset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_reset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFormElement_submit = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.submit.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormElement_submit, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormElement_submit, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormElement_submit, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFormControlsCollection_namedItem = function () { let r = cbb_wf.checkIllegal(this, "HTMLFormControlsCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.namedItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFormControlsCollection_namedItem, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFormControlsCollection_namedItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFormControlsCollection_namedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFontElement_get_color = function () { let r = cbb_wf.checkIllegal(this, "HTMLFontElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.color; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFontElement_get_color, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFontElement_get_color, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFontElement_get_color, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFontElement_set_color = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFontElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFontElement_set_color, set object'); break case "function": cbb_wf.console.log('[*] HTMLFontElement_set_color, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.color = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFontElement_set_color, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFontElement_get_face = function () { let r = cbb_wf.checkIllegal(this, "HTMLFontElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.face; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFontElement_get_face, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFontElement_get_face, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFontElement_get_face, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFontElement_set_face = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFontElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFontElement_set_face, set object'); break case "function": cbb_wf.console.log('[*] HTMLFontElement_set_face, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.face = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFontElement_set_face, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFontElement_get_size = function () { let r = cbb_wf.checkIllegal(this, "HTMLFontElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.size; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFontElement_get_size, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFontElement_get_size, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFontElement_get_size, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFontElement_set_size = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFontElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFontElement_set_size, set object'); break case "function": cbb_wf.console.log('[*] HTMLFontElement_set_size, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.size = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFontElement_set_size, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFieldSetElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFieldSetElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLFieldSetElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_get_elements = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elements; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_elements, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_elements, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_elements, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLFieldSetElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFieldSetElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLFieldSetElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLFieldSetElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLFieldSetElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLFieldSetElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLFieldSetElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLEmbedElement_get_src = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.src; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_get_src, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_get_src, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_get_src, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLEmbedElement_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_set_src, set object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_set_src, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.src = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_set_src, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLEmbedElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLEmbedElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLEmbedElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLEmbedElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLEmbedElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLEmbedElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLEmbedElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLEmbedElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLEmbedElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLEmbedElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLEmbedElement_getSVGDocument = function () { let r = cbb_wf.checkIllegal(this, "HTMLEmbedElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSVGDocument.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLEmbedElement_getSVGDocument, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLEmbedElement_getSVGDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLEmbedElement_getSVGDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLElement_get_title = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.title; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_title, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_title, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_title, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_title = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_title, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_title, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.title = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_title, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_lang = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lang; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_lang, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_lang, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_lang, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_lang = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_lang, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_lang, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.lang = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_lang, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_translate = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.translate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_translate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_translate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_translate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_translate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_translate, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_translate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.translate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_translate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_dir = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dir; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_dir, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_dir, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_dir, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_dir = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_dir, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_dir, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.dir = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_dir, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_hidden = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hidden; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_hidden, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_hidden, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_hidden, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_hidden = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_hidden, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_hidden, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hidden = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_hidden, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_accessKey = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.accessKey; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_accessKey, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_accessKey, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_accessKey, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_accessKey = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_accessKey, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_accessKey, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.accessKey = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_accessKey, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_draggable = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.draggable; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_draggable, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_draggable, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_draggable, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_draggable = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_draggable, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_draggable, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.draggable = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_draggable, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_spellcheck = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.spellcheck; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_spellcheck, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_spellcheck, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_spellcheck, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_spellcheck = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_spellcheck, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_spellcheck, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.spellcheck = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_spellcheck, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_autocapitalize = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autocapitalize; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_autocapitalize, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_autocapitalize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_autocapitalize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_autocapitalize = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_autocapitalize, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_autocapitalize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autocapitalize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_autocapitalize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_contentEditable = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentEditable; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_contentEditable, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_contentEditable, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_contentEditable, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_contentEditable = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_contentEditable, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_contentEditable, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.contentEditable = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_contentEditable, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_isContentEditable = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isContentEditable; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_isContentEditable, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_isContentEditable, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_isContentEditable, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_inputMode = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.inputMode; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_inputMode, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_inputMode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_inputMode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_inputMode = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_inputMode, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_inputMode, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.inputMode = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_inputMode, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_offsetParent = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offsetParent; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_offsetParent, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_offsetParent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_offsetParent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_offsetTop = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offsetTop; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_offsetTop, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_offsetTop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_offsetTop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_offsetLeft = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offsetLeft; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_offsetLeft, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_offsetLeft, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_offsetLeft, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_offsetWidth = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offsetWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_offsetWidth, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_offsetWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_offsetWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_offsetHeight = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.offsetHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_offsetHeight, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_offsetHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_offsetHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_innerText = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.innerText; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_innerText, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_innerText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_innerText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_innerText = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_innerText, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_innerText, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.innerText = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_innerText, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_outerText = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.outerText; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_outerText, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_outerText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_outerText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_outerText = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_outerText, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_outerText, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.outerText = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_outerText, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onbeforexrselect = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforexrselect; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onbeforexrselect, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onbeforexrselect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onbeforexrselect, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onbeforexrselect = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onbeforexrselect, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onbeforexrselect, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforexrselect = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onbeforexrselect, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onabort; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onabort, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onabort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onabort, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onabort, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onabort, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onabort = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onabort, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onblur = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onblur; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onblur, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onblur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onblur, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onblur = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onblur, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onblur, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onblur = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onblur, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncancel = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncancel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncancel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncancel, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncanplay = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncanplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncanplay, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncanplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncanplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncanplay = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncanplay, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncanplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncanplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncanplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncanplaythrough = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncanplaythrough; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncanplaythrough, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncanplaythrough, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncanplaythrough, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncanplaythrough = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncanplaythrough, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncanplaythrough, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncanplaythrough = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncanplaythrough, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onchange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onchange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onclick = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onclick, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onclick = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onclick, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onclose; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onclose, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onclose, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onclose, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onclose, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onclose, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onclose = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onclose, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncontextlost = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextlost; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncontextlost, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncontextlost, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncontextlost, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncontextlost = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncontextlost, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncontextlost, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextlost = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncontextlost, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncontextmenu = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextmenu; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncontextmenu, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncontextmenu, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncontextmenu, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncontextmenu = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncontextmenu, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncontextmenu, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextmenu = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncontextmenu, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncontextrestored = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextrestored; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncontextrestored, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncontextrestored, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncontextrestored, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncontextrestored = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncontextrestored, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncontextrestored, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextrestored = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncontextrestored, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncuechange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncuechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncuechange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncuechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncuechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncuechange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncuechange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncuechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncuechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncuechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondblclick = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondblclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondblclick, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondblclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondblclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondblclick = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondblclick, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondblclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondblclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondblclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondrag = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondrag; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondrag, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondrag, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondrag, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondrag = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondrag, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondrag, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondrag = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondrag, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondragend = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragend; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondragend, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondragend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondragend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondragend = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondragend, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondragend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondragend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondragenter = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondragenter, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondragenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondragenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondragenter = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondragenter, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondragenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondragenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondragleave = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondragleave, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondragleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondragleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondragleave = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondragleave, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondragleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondragleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondragover = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragover; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondragover, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondragover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondragover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondragover = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondragover, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondragover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondragover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondragstart = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondragstart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondragstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondragstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondragstart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondragstart, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondragstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondragstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondrop = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondrop; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondrop, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondrop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondrop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondrop = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondrop, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondrop, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondrop = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondrop, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ondurationchange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondurationchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ondurationchange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ondurationchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ondurationchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ondurationchange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ondurationchange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ondurationchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondurationchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ondurationchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onemptied = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onemptied; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onemptied, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onemptied, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onemptied, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onemptied = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onemptied, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onemptied, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onemptied = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onemptied, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onended = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onended; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onended, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onended, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onended, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onended = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onended, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onended, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onended = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onended, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onerror, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onerror, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onfocus = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onfocus, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onfocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onfocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onfocus = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onfocus, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onfocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onfocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onformdata = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onformdata; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onformdata, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onformdata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onformdata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onformdata = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onformdata, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onformdata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onformdata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onformdata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oninput = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oninput; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oninput, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oninput, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oninput, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oninput = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oninput, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oninput, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oninput = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oninput, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oninvalid = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oninvalid; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oninvalid, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oninvalid, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oninvalid, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oninvalid = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oninvalid, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oninvalid, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oninvalid = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oninvalid, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onkeydown = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeydown; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onkeydown, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onkeydown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onkeydown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onkeydown = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onkeydown, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onkeydown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeydown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onkeydown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onkeypress = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeypress; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onkeypress, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onkeypress, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onkeypress, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onkeypress = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onkeypress, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onkeypress, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeypress = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onkeypress, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onkeyup = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeyup; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onkeyup, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onkeyup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onkeyup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onkeyup = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onkeyup, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onkeyup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeyup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onkeyup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onload = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onload, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onloadeddata = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadeddata; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onloadeddata, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onloadeddata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onloadeddata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onloadeddata = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onloadeddata, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onloadeddata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadeddata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onloadeddata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onloadedmetadata = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadedmetadata; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onloadedmetadata, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onloadedmetadata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onloadedmetadata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onloadedmetadata = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onloadedmetadata, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onloadedmetadata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadedmetadata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onloadedmetadata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onloadstart = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onloadstart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onloadstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onloadstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onloadstart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onloadstart, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onloadstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onloadstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmousedown = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousedown; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmousedown, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmousedown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmousedown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmousedown = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmousedown, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmousedown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousedown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmousedown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmouseenter = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmouseenter, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmouseenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmouseenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmouseenter = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmouseenter, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmouseenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmouseenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmouseleave = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmouseleave, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmouseleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmouseleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmouseleave = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmouseleave, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmouseleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmouseleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmousemove = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousemove; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmousemove, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmousemove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmousemove, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmousemove = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmousemove, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmousemove, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousemove = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmousemove, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmouseout = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseout; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmouseout, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmouseout, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmouseout, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmouseout = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmouseout, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmouseout, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseout = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmouseout, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmouseover = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseover; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmouseover, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmouseover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmouseover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmouseover = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmouseover, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmouseover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmouseover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmouseup = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseup; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmouseup, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmouseup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmouseup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmouseup = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmouseup, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmouseup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmouseup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onmousewheel = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousewheel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onmousewheel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onmousewheel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onmousewheel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onmousewheel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onmousewheel, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onmousewheel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousewheel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onmousewheel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpause = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpause; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpause, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpause, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpause, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpause = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpause, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpause, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpause = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpause, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onplay = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onplay, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onplay = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onplay, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onplaying = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onplaying; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onplaying, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onplaying, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onplaying, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onplaying = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onplaying, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onplaying, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onplaying = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onplaying, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onprogress = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onprogress; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onprogress, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onprogress, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onprogress, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onprogress = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onprogress, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onprogress, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onprogress = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onprogress, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onratechange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onratechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onratechange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onratechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onratechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onratechange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onratechange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onratechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onratechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onratechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onreset = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onreset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onreset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onreset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onreset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onreset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onreset, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onreset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onreset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onreset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onresize; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onresize, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onresize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onresize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onresize, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onresize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onresize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onresize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onscroll = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onscroll; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onscroll, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onscroll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onscroll, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onscroll = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onscroll, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onscroll, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onscroll = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onscroll, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onsecuritypolicyviolation = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsecuritypolicyviolation; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onsecuritypolicyviolation, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onsecuritypolicyviolation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onsecuritypolicyviolation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onsecuritypolicyviolation = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onsecuritypolicyviolation, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onsecuritypolicyviolation, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsecuritypolicyviolation = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onsecuritypolicyviolation, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onseeked = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onseeked; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onseeked, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onseeked, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onseeked, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onseeked = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onseeked, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onseeked, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onseeked = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onseeked, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onseeking = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onseeking; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onseeking, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onseeking, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onseeking, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onseeking = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onseeking, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onseeking, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onseeking = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onseeking, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onselect = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselect; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onselect, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onselect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onselect, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onselect = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onselect, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onselect, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselect = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onselect, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onslotchange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onslotchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onslotchange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onslotchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onslotchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onslotchange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onslotchange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onslotchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onslotchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onslotchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onstalled = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onstalled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onstalled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onstalled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onstalled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onstalled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onstalled, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onstalled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onstalled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onstalled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onsubmit = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsubmit; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onsubmit, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onsubmit, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onsubmit, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onsubmit = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onsubmit, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onsubmit, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsubmit = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onsubmit, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onsuspend = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsuspend; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onsuspend, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onsuspend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onsuspend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onsuspend = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onsuspend, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onsuspend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsuspend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onsuspend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ontimeupdate = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontimeupdate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ontimeupdate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ontimeupdate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ontimeupdate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ontimeupdate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ontimeupdate, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ontimeupdate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontimeupdate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ontimeupdate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ontoggle = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontoggle; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ontoggle, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ontoggle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ontoggle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ontoggle = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ontoggle, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ontoggle, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontoggle = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ontoggle, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onvolumechange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onvolumechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onvolumechange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onvolumechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onvolumechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onvolumechange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onvolumechange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onvolumechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onvolumechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onvolumechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onwaiting = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwaiting; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onwaiting, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onwaiting, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onwaiting, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onwaiting = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onwaiting, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onwaiting, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwaiting = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onwaiting, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onwebkitanimationend = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationend; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onwebkitanimationend, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onwebkitanimationend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onwebkitanimationend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onwebkitanimationend = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onwebkitanimationend, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onwebkitanimationend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onwebkitanimationend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onwebkitanimationiteration = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationiteration; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onwebkitanimationiteration, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onwebkitanimationiteration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onwebkitanimationiteration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onwebkitanimationiteration = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onwebkitanimationiteration, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onwebkitanimationiteration, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationiteration = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onwebkitanimationiteration, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onwebkitanimationstart = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onwebkitanimationstart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onwebkitanimationstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onwebkitanimationstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onwebkitanimationstart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onwebkitanimationstart, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onwebkitanimationstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onwebkitanimationstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onwebkittransitionend = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkittransitionend; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onwebkittransitionend, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onwebkittransitionend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onwebkittransitionend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onwebkittransitionend = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onwebkittransitionend, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onwebkittransitionend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkittransitionend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onwebkittransitionend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onwheel = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwheel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onwheel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onwheel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onwheel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onwheel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onwheel, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onwheel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwheel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onwheel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onauxclick = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onauxclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onauxclick, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onauxclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onauxclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onauxclick = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onauxclick, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onauxclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onauxclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onauxclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ongotpointercapture = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ongotpointercapture; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ongotpointercapture, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ongotpointercapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ongotpointercapture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ongotpointercapture = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ongotpointercapture, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ongotpointercapture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ongotpointercapture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ongotpointercapture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onlostpointercapture = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onlostpointercapture; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onlostpointercapture, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onlostpointercapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onlostpointercapture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onlostpointercapture = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onlostpointercapture, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onlostpointercapture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onlostpointercapture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onlostpointercapture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerdown = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerdown; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerdown, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerdown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerdown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerdown = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerdown, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerdown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerdown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerdown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointermove = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointermove; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointermove, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointermove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointermove, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointermove = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointermove, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointermove, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointermove = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointermove, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerup = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerup; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerup, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerup = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerup, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointercancel = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointercancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointercancel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointercancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointercancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointercancel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointercancel, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointercancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointercancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointercancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerover = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerover; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerover, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerover = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerover, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerout = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerout; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerout, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerout, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerout, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerout = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerout, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerout, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerout = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerout, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerenter = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerenter, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerenter = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerenter, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerleave = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerleave, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerleave = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerleave, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onselectstart = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselectstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onselectstart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onselectstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onselectstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onselectstart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onselectstart, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onselectstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselectstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onselectstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onselectionchange = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselectionchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onselectionchange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onselectionchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onselectionchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onselectionchange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onselectionchange, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onselectionchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselectionchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onselectionchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onanimationend = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationend; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onanimationend, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onanimationend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onanimationend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onanimationend = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onanimationend, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onanimationend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onanimationend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onanimationiteration = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationiteration; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onanimationiteration, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onanimationiteration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onanimationiteration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onanimationiteration = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onanimationiteration, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onanimationiteration, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationiteration = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onanimationiteration, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onanimationstart = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onanimationstart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onanimationstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onanimationstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onanimationstart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onanimationstart, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onanimationstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onanimationstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ontransitionrun = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionrun; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ontransitionrun, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ontransitionrun, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ontransitionrun, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ontransitionrun = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ontransitionrun, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ontransitionrun, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionrun = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ontransitionrun, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ontransitionstart = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ontransitionstart, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ontransitionstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ontransitionstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ontransitionstart = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ontransitionstart, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ontransitionstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ontransitionstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ontransitionend = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionend; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ontransitionend, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ontransitionend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ontransitionend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ontransitionend = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ontransitionend, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ontransitionend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ontransitionend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_ontransitioncancel = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitioncancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_ontransitioncancel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_ontransitioncancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_ontransitioncancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_ontransitioncancel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_ontransitioncancel, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_ontransitioncancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitioncancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_ontransitioncancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncopy = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncopy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncopy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncopy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncopy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncopy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncopy, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncopy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncopy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncopy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_oncut = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncut; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_oncut, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_oncut, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_oncut, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_oncut = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_oncut, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_oncut, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncut = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_oncut, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpaste = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpaste; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpaste, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpaste, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpaste, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpaste = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpaste, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpaste, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpaste = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpaste, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_dataset = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dataset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_dataset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_dataset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_dataset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_get_nonce = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nonce; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_nonce, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_nonce, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_nonce, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_nonce = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_nonce, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_nonce, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.nonce = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_nonce, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_autofocus = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.autofocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_autofocus, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_autofocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_autofocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_autofocus = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_autofocus, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_autofocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.autofocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_autofocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_tabIndex = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tabIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_tabIndex, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_tabIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_tabIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_tabIndex = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_tabIndex, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_tabIndex, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.tabIndex = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_tabIndex, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_style = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.style; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_style, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_style, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_style, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_style, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_style, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.style = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_style, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_attachInternals = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.attachInternals.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_attachInternals, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_attachInternals, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_attachInternals, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLElement_blur = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.blur.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_blur, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_blur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_blur, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLElement_click = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.click.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_click, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_click, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_click, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLElement_focus = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.focus.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_focus, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_focus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_focus, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLElement_get_inert = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.inert; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_inert, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_inert, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_inert, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_inert = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_inert, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_inert, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.inert = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_inert, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_enterKeyHint = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.enterKeyHint; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_enterKeyHint, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_enterKeyHint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_enterKeyHint, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_enterKeyHint = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_enterKeyHint, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_enterKeyHint, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.enterKeyHint = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_enterKeyHint, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_virtualKeyboardPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.virtualKeyboardPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_virtualKeyboardPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_virtualKeyboardPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_virtualKeyboardPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_virtualKeyboardPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_virtualKeyboardPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_virtualKeyboardPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.virtualKeyboardPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_virtualKeyboardPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onpointerrawupdate = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerrawupdate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onpointerrawupdate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onpointerrawupdate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onpointerrawupdate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onpointerrawupdate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onpointerrawupdate, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onpointerrawupdate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerrawupdate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onpointerrawupdate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLElement_get_onbeforematch = function () { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforematch; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLElement_get_onbeforematch, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLElement_get_onbeforematch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_get_onbeforematch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLElement_set_onbeforematch = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLElement_set_onbeforematch, set object'); break case "function": cbb_wf.console.log('[*] HTMLElement_set_onbeforematch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforematch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLElement_set_onbeforematch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDivElement_get_align = function () { let r = cbb_wf.checkIllegal(this, "HTMLDivElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.align; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDivElement_get_align, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDivElement_get_align, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDivElement_get_align, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDivElement_set_align = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDivElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDivElement_set_align, set object'); break case "function": cbb_wf.console.log('[*] HTMLDivElement_set_align, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.align = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDivElement_set_align, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDirectoryElement_get_compact = function () { let r = cbb_wf.checkIllegal(this, "HTMLDirectoryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compact; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDirectoryElement_get_compact, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDirectoryElement_get_compact, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDirectoryElement_get_compact, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDirectoryElement_set_compact = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDirectoryElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDirectoryElement_set_compact, set object'); break case "function": cbb_wf.console.log('[*] HTMLDirectoryElement_set_compact, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.compact = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDirectoryElement_set_compact, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDialogElement_get_open = function () { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.open; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_get_open, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_get_open, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_get_open, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDialogElement_set_open = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_set_open, set object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_set_open, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.open = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_set_open, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDialogElement_get_returnValue = function () { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.returnValue; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_get_returnValue, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_get_returnValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_get_returnValue, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDialogElement_set_returnValue = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_set_returnValue, set object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_set_returnValue, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.returnValue = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_set_returnValue, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDialogElement_close = function () { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.close.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_close, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_close, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLDialogElement_show = function () { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.show.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_show, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_show, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_show, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLDialogElement_showModal = function () { let r = cbb_wf.checkIllegal(this, "HTMLDialogElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.showModal.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDialogElement_showModal, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDialogElement_showModal, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDialogElement_showModal, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLDetailsElement_get_open = function () { let r = cbb_wf.checkIllegal(this, "HTMLDetailsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.open; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDetailsElement_get_open, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDetailsElement_get_open, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDetailsElement_get_open, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDetailsElement_set_open = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDetailsElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDetailsElement_set_open, set object'); break case "function": cbb_wf.console.log('[*] HTMLDetailsElement_set_open, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.open = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDetailsElement_set_open, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDataListElement_get_options = function () { let r = cbb_wf.checkIllegal(this, "HTMLDataListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.options; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDataListElement_get_options, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDataListElement_get_options, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDataListElement_get_options, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDataElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLDataElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDataElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDataElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDataElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDataElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDataElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDataElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLDataElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDataElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLDListElement_get_compact = function () { let r = cbb_wf.checkIllegal(this, "HTMLDListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compact; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLDListElement_get_compact, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLDListElement_get_compact, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDListElement_get_compact, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLDListElement_set_compact = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLDListElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLDListElement_set_compact, set object'); break case "function": cbb_wf.console.log('[*] HTMLDListElement_set_compact, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.compact = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLDListElement_set_compact, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLCollection_get_length = function () { let r = cbb_wf.checkIllegal(this, "HTMLCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCollection_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCollection_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCollection_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLCollection_item = function () { let r = cbb_wf.checkIllegal(this, "HTMLCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCollection_item, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCollection_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCollection_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLCollection_namedItem = function () { let r = cbb_wf.checkIllegal(this, "HTMLCollection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.namedItem.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCollection_namedItem, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCollection_namedItem, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCollection_namedItem, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLCanvasElement_get_width = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.width; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_get_width, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_get_width, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_get_width, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLCanvasElement_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_set_width, set object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_set_width, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.width = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_set_width, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLCanvasElement_get_height = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.height; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_get_height, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_get_height, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_get_height, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLCanvasElement_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_set_height, set object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_set_height, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.height = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_set_height, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLCanvasElement_captureStream = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.captureStream.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_captureStream, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_captureStream, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_captureStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLCanvasElement_getContext = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getContext.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_getContext, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_getContext, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_getContext, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLCanvasElement_toBlob = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toBlob.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_toBlob, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_toBlob, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_toBlob, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLCanvasElement_toDataURL = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toDataURL.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_toDataURL, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_toDataURL, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_toDataURL, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLCanvasElement_transferControlToOffscreen = function () { let r = cbb_wf.checkIllegal(this, "HTMLCanvasElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.transferControlToOffscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLCanvasElement_transferControlToOffscreen, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLCanvasElement_transferControlToOffscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLCanvasElement_transferControlToOffscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLButtonElement_get_disabled = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.disabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_disabled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_disabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_disabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_disabled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_disabled, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_disabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.disabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_disabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_form = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.form; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_form, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_form, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_form, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_get_formAction = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formAction; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_formAction, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_formAction, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_formAction, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_formAction = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_formAction, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_formAction, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formAction = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_formAction, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_formEnctype = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formEnctype; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_formEnctype, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_formEnctype, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_formEnctype, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_formEnctype = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_formEnctype, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_formEnctype, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formEnctype = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_formEnctype, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_formMethod = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formMethod; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_formMethod, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_formMethod, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_formMethod, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_formMethod = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_formMethod, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_formMethod, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formMethod = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_formMethod, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_formNoValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formNoValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_formNoValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_formNoValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_formNoValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_formNoValidate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_formNoValidate, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_formNoValidate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formNoValidate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_formNoValidate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_formTarget = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.formTarget; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_formTarget, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_formTarget, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_formTarget, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_formTarget = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_formTarget, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_formTarget, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.formTarget = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_formTarget, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_value = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_set_value, set object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLButtonElement_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.willValidate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_willValidate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_willValidate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_get_validity = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validity; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_validity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_validity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_validity, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.validationMessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_validationMessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_validationMessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_get_labels = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.labels; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_get_labels, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_get_labels, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_get_labels, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLButtonElement_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.checkValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_checkValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_checkValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLButtonElement_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reportValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_reportValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_reportValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLButtonElement_setCustomValidity = function () { let r = cbb_wf.checkIllegal(this, "HTMLButtonElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setCustomValidity.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLButtonElement_setCustomValidity, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLButtonElement_setCustomValidity, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLButtonElement_setCustomValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLBodyElement_get_text = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.text; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_text, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_text, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_text, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_text, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_text, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.text = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_text, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_link = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.link; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_link, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_link, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_link, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_link = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_link, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_link, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.link = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_link, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_vLink = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vLink; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_vLink, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_vLink, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_vLink, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_vLink = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_vLink, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_vLink, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vLink = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_vLink, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_aLink = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.aLink; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_aLink, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_aLink, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_aLink, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_aLink = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_aLink, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_aLink, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.aLink = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_aLink, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_bgColor = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_bgColor, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_bgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_bgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_bgColor = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_bgColor, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_bgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.bgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_bgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_background = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.background; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_background, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_background, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_background, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_background = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_background, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_background, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.background = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_background, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onblur = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onblur; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onblur, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onblur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onblur, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onblur = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onblur, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onblur, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onblur = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onblur, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onerror, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onerror, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onfocus = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onfocus, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onfocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onfocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onfocus = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onfocus, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onfocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onfocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onload = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onload, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onresize; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onresize, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onresize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onresize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onresize, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onresize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onresize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onresize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onscroll = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onscroll; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onscroll, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onscroll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onscroll, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onscroll = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onscroll, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onscroll, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onscroll = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onscroll, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onafterprint = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onafterprint; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onafterprint, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onafterprint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onafterprint, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onafterprint = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onafterprint, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onafterprint, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onafterprint = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onafterprint, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onbeforeprint = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforeprint; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onbeforeprint, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onbeforeprint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onbeforeprint, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onbeforeprint = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onbeforeprint, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onbeforeprint, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforeprint = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onbeforeprint, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onbeforeunload = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforeunload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onbeforeunload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onbeforeunload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onbeforeunload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onbeforeunload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onbeforeunload, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onbeforeunload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforeunload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onbeforeunload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onhashchange = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onhashchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onhashchange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onhashchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onhashchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onhashchange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onhashchange, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onhashchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onhashchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onhashchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onlanguagechange = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onlanguagechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onlanguagechange, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onlanguagechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onlanguagechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onlanguagechange = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onlanguagechange, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onlanguagechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onlanguagechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onlanguagechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmessage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onmessage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onmessage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onmessage, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onmessage, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmessage = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onmessageerror = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmessageerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onmessageerror, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onmessageerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onmessageerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onmessageerror = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onmessageerror, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onmessageerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmessageerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onmessageerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onoffline = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onoffline; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onoffline, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onoffline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onoffline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onoffline = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onoffline, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onoffline, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onoffline = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onoffline, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_ononline = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ononline; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_ononline, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_ononline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_ononline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_ononline = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_ononline, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_ononline, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ononline = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_ononline, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onpagehide = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpagehide; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onpagehide, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onpagehide, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onpagehide, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onpagehide = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onpagehide, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onpagehide, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpagehide = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onpagehide, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onpageshow = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpageshow; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onpageshow, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onpageshow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onpageshow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onpageshow = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onpageshow, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onpageshow, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpageshow = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onpageshow, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onpopstate = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpopstate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onpopstate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onpopstate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onpopstate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onpopstate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onpopstate, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onpopstate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpopstate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onpopstate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onrejectionhandled = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onrejectionhandled; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onrejectionhandled, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onrejectionhandled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onrejectionhandled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onrejectionhandled = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onrejectionhandled, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onrejectionhandled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onrejectionhandled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onrejectionhandled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onstorage = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onstorage; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onstorage, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onstorage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onstorage, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onstorage = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onstorage, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onstorage, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onstorage = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onstorage, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onunhandledrejection = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onunhandledrejection; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onunhandledrejection, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onunhandledrejection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onunhandledrejection, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onunhandledrejection = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onunhandledrejection, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onunhandledrejection, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onunhandledrejection = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onunhandledrejection, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBodyElement_get_onunload = function () { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onunload; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_get_onunload, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_get_onunload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_get_onunload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBodyElement_set_onunload = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBodyElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBodyElement_set_onunload, set object'); break case "function": cbb_wf.console.log('[*] HTMLBodyElement_set_onunload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onunload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBodyElement_set_onunload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBaseElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "HTMLBaseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBaseElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBaseElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBaseElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBaseElement_set_href = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBaseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBaseElement_set_href, set object'); break case "function": cbb_wf.console.log('[*] HTMLBaseElement_set_href, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.href = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBaseElement_set_href, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBaseElement_get_target = function () { let r = cbb_wf.checkIllegal(this, "HTMLBaseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBaseElement_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBaseElement_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBaseElement_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBaseElement_set_target = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBaseElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBaseElement_set_target, set object'); break case "function": cbb_wf.console.log('[*] HTMLBaseElement_set_target, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.target = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBaseElement_set_target, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLBRElement_get_clear = function () { let r = cbb_wf.checkIllegal(this, "HTMLBRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clear; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLBRElement_get_clear, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLBRElement_get_clear, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBRElement_get_clear, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLBRElement_set_clear = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLBRElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLBRElement_set_clear, set object'); break case "function": cbb_wf.console.log('[*] HTMLBRElement_set_clear, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.clear = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLBRElement_set_clear, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_alt = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.alt; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_alt, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_alt, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_alt, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_alt = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_alt, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_alt, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.alt = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_alt, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_coords = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.coords; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_coords, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_coords, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_coords, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_coords = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_coords, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_coords, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.coords = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_coords, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_download = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.download; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_download, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_download, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_download, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_download = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_download, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_download, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.download = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_download, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_shape = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shape; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_shape, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_shape, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_shape, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_shape = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_shape, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_shape, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.shape = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_shape, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_target = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_target = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_target, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_target, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.target = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_target, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_ping = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ping; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_ping, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_ping, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_ping, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_ping = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_ping, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_ping, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ping = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_ping, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_rel = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_rel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_rel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_rel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_rel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_rel, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_rel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_rel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_relList = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.relList; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_relList, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_relList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_relList, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_relList = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_relList, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_relList, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.relList = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_relList, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrerPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_referrerPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_referrerPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_referrerPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_referrerPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_referrerPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.referrerPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_referrerPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_noHref = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.noHref; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_noHref, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_noHref, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_noHref, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_noHref = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_noHref, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_noHref, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.noHref = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_noHref, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_origin = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.origin; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_origin, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_origin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_origin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.protocol; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_protocol, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_protocol, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_protocol, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_protocol = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_protocol, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_protocol, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.protocol = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_protocol, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_username = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.username; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_username, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_username, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_username, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_username = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_username, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_username, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.username = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_username, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_password = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.password; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_password, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_password, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_password, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_password = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_password, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_password, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.password = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_password, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_host = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.host; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_host, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_host, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_host, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_host = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_host, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_host, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.host = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_host, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_hostname = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hostname; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_hostname, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_hostname, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_hostname, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_hostname = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_hostname, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_hostname, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hostname = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_hostname, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_port = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.port; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_port, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_port, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_port, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_port = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_port, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_port, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.port = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_port, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_pathname = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pathname; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_pathname, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_pathname, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_pathname, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_pathname = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_pathname, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_pathname, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.pathname = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_pathname, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_search = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.search; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_search, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_search, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_search, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_search = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_search, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_search, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.search = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_search, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_hash = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hash; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_hash, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_hash, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_hash, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_hash = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_hash, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_hash, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hash = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_hash, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAreaElement_set_href = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_set_href, set object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_set_href, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.href = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_set_href, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAreaElement_toString = function () { let r = cbb_wf.checkIllegal(this, "HTMLAreaElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAreaElement_toString, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAreaElement_toString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAreaElement_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLAnchorElement_get_target = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.target; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_target, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_target, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_target, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_target = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_target, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_target, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.target = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_target, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_download = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.download; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_download, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_download, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_download, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_download = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_download, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_download, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.download = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_download, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_ping = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ping; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_ping, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_ping, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_ping, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_ping = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_ping, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_ping, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ping = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_ping, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_rel = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rel; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_rel, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_rel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_rel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_rel = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_rel, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_rel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_rel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_relList = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.relList; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_relList, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_relList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_relList, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_relList = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_relList, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_relList, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.relList = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_relList, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_hreflang = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hreflang; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_hreflang, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_hreflang, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_hreflang, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_hreflang = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_hreflang, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_hreflang, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hreflang = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_hreflang, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_type = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_type, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_type, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.type = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_type, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_referrerPolicy = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrerPolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_referrerPolicy, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_referrerPolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_referrerPolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_referrerPolicy = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_referrerPolicy, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_referrerPolicy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.referrerPolicy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_referrerPolicy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_text = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.text; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_text, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_text, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_text, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_text, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_text, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.text = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_text, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_coords = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.coords; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_coords, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_coords, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_coords, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_coords = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_coords, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_coords, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.coords = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_coords, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_charset = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.charset; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_charset, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_charset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_charset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_charset = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_charset, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_charset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.charset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_charset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_name = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_name, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_name, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.name = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_name, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_rev = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rev; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_rev, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_rev, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_rev, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_rev = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_rev, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_rev, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.rev = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_rev, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_shape = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shape; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_shape, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_shape, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_shape, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_shape = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_shape, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_shape, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.shape = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_shape, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_origin = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.origin; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_origin, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_origin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_origin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.protocol; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_protocol, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_protocol, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_protocol, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_protocol = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_protocol, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_protocol, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.protocol = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_protocol, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_username = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.username; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_username, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_username, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_username, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_username = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_username, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_username, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.username = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_username, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_password = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.password; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_password, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_password, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_password, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_password = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_password, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_password, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.password = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_password, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_host = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.host; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_host, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_host, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_host, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_host = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_host, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_host, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.host = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_host, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_hostname = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hostname; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_hostname, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_hostname, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_hostname, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_hostname = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_hostname, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_hostname, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hostname = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_hostname, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_port = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.port; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_port, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_port, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_port, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_port = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_port, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_port, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.port = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_port, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_pathname = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pathname; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_pathname, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_pathname, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_pathname, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_pathname = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_pathname, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_pathname, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.pathname = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_pathname, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_search = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.search; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_search, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_search, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_search, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_search = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_search, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_search, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.search = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_search, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_hash = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hash; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_hash, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_hash, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_hash, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_hash = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_hash, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_hash, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hash = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_hash, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_get_href = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_href = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_href, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_href, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.href = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_href, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.HTMLAnchorElement_toString = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_toString, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_toString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HTMLAnchorElement_get_hrefTranslate = function () { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hrefTranslate; switch (typeof result) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_get_hrefTranslate, 返回object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_get_hrefTranslate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_get_hrefTranslate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.HTMLAnchorElement_set_hrefTranslate = function (val) { let r = cbb_wf.checkIllegal(this, "HTMLAnchorElement"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] HTMLAnchorElement_set_hrefTranslate, set object'); break case "function": cbb_wf.console.log('[*] HTMLAnchorElement_set_hrefTranslate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.hrefTranslate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HTMLAnchorElement_set_hrefTranslate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.GeolocationPositionError_get_code = function () { let r = cbb_wf.checkIllegal(this, "GeolocationPositionError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationPositionError_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationPositionError_get_message = function () { let r = cbb_wf.checkIllegal(this, "GeolocationPositionError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationPositionError_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationPosition_get_coords = function () { let r = cbb_wf.checkIllegal(this, "GeolocationPosition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'coords'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationPosition_get_coords, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationPosition_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "GeolocationPosition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationPosition_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_latitude = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'latitude'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_latitude, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_longitude = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'longitude'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_longitude, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_altitude = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'altitude'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_altitude, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_accuracy = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'accuracy'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_accuracy, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_altitudeAccuracy = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'altitudeAccuracy'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_altitudeAccuracy, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_heading = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'heading'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_heading, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GeolocationCoordinates_get_speed = function () { let r = cbb_wf.checkIllegal(this, "GeolocationCoordinates"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'speed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GeolocationCoordinates_get_speed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Geolocation_clearWatch = function () { let r = cbb_wf.checkIllegal(this, "Geolocation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Geolocation_clearWatch, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Geolocation_getCurrentPosition = function () { let r = cbb_wf.checkIllegal(this, "Geolocation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Geolocation_getCurrentPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Geolocation_watchPosition = function () { let r = cbb_wf.checkIllegal(this, "Geolocation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Geolocation_watchPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.GamepadHapticActuator_get_type = function () { let r = cbb_wf.checkIllegal(this, "GamepadHapticActuator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadHapticActuator_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GamepadHapticActuator_playEffect = function () { let r = cbb_wf.checkIllegal(this, "GamepadHapticActuator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadHapticActuator_playEffect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.GamepadHapticActuator_reset = function () { let r = cbb_wf.checkIllegal(this, "GamepadHapticActuator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadHapticActuator_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.GamepadEvent_get_gamepad = function () { let r = cbb_wf.checkIllegal(this, "GamepadEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gamepad'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadEvent_get_gamepad, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GamepadButton_get_pressed = function () { let r = cbb_wf.checkIllegal(this, "GamepadButton"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pressed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadButton_get_pressed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GamepadButton_get_touched = function () { let r = cbb_wf.checkIllegal(this, "GamepadButton"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'touched'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadButton_get_touched, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GamepadButton_get_value = function () { let r = cbb_wf.checkIllegal(this, "GamepadButton"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GamepadButton_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_id = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_index = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'index'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_index, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_connected = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connected'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_connected, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_mapping = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mapping'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_mapping, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_axes = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'axes'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_axes, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_buttons = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'buttons'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_buttons, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gamepad_get_vibrationActuator = function () { let r = cbb_wf.checkIllegal(this, "Gamepad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vibrationActuator'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gamepad_get_vibrationActuator, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.GainNode_get_gain = function () { let r = cbb_wf.checkIllegal(this, "GainNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gain'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "GainNode_get_gain, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FormDataEvent_get_formData = function () { let r = cbb_wf.checkIllegal(this, "FormDataEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'formData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormDataEvent_get_formData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FormData_append = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.append.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_append, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_append, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_delete = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.delete.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_delete, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_delete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_get = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.get.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_get, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_get, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_getAll = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_getAll, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_getAll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_getAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_has = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.has.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_has, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_has, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_set = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.set.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_set, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_set, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_set, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_entries = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.entries.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_entries, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_entries, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_forEach = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.forEach.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_forEach, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_forEach, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_keys = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.keys.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_keys, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_keys, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FormData_values = function () { let r = cbb_wf.checkIllegal(this, "FormData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.values.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] FormData_values, 返回object'); break case "function": cbb_wf.console.log('[*] FormData_values, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FormData_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FontFaceSetLoadEvent_get_fontfaces = function () { let r = cbb_wf.checkIllegal(this, "FontFaceSetLoadEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fontfaces'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFaceSetLoadEvent_get_fontfaces, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_get_family = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'family'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_family, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_family = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'family', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_family, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_style = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'style', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_style, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_weight = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'weight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_weight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_weight = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'weight', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_weight, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_stretch = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'stretch'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_stretch, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_stretch = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'stretch', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_stretch, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_unicodeRange = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unicodeRange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_unicodeRange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_unicodeRange = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'unicodeRange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_unicodeRange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_variant = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'variant'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_variant, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_variant = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'variant', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_variant, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_featureSettings = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'featureSettings'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_featureSettings, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_featureSettings = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'featureSettings', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_featureSettings, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_display = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'display'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_display, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_display = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'display', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_display, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_ascentOverride = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ascentOverride'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_ascentOverride, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_ascentOverride = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ascentOverride', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_ascentOverride, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_descentOverride = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'descentOverride'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_descentOverride, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_descentOverride = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'descentOverride', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_descentOverride, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_lineGapOverride = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineGapOverride'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_lineGapOverride, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_lineGapOverride = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lineGapOverride', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_lineGapOverride, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FontFace_get_status = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_get_loaded = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loaded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_loaded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_load = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_load, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FontFace_get_sizeAdjust = function () { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sizeAdjust'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_get_sizeAdjust, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontFace_set_sizeAdjust = function (val) { let r = cbb_wf.checkIllegal(this, "FontFace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'sizeAdjust', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontFace_set_sizeAdjust, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FocusEvent_get_relatedTarget = function () { let r = cbb_wf.checkIllegal(this, "FocusEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'relatedTarget'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FocusEvent_get_relatedTarget, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_get_result = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'result'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_result, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_get_error = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_get_onloadstart = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onloadstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_onloadstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_set_onloadstart = function (val) { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onloadstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_set_onloadstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FileReader_get_onprogress = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onprogress'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_onprogress, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_set_onprogress = function (val) { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onprogress', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_set_onprogress, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FileReader_get_onload = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onload'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_onload, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onload', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_set_onload, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FileReader_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onabort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_onabort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onabort', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_set_onabort, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FileReader_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FileReader_get_onloadend = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onloadend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_get_onloadend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileReader_set_onloadend = function (val) { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onloadend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_set_onloadend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.FileReader_abort = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileReader_readAsArrayBuffer = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_readAsArrayBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileReader_readAsBinaryString = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_readAsBinaryString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileReader_readAsDataURL = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_readAsDataURL, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileReader_readAsText = function () { let r = cbb_wf.checkIllegal(this, "FileReader"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileReader_readAsText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileList_get_length = function () { let r = cbb_wf.checkIllegal(this, "FileList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileList_item = function () { let r = cbb_wf.checkIllegal(this, "FileList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.File_get_name = function () { let r = cbb_wf.checkIllegal(this, "File"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "File_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.File_get_lastModified = function () { let r = cbb_wf.checkIllegal(this, "File"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lastModified'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "File_get_lastModified, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.File_get_lastModifiedDate = function () { let r = cbb_wf.checkIllegal(this, "File"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lastModifiedDate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "File_get_lastModifiedDate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.File_get_webkitRelativePath = function () { let r = cbb_wf.checkIllegal(this, "File"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'webkitRelativePath'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "File_get_webkitRelativePath, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FeaturePolicy_allowedFeatures = function () { let r = cbb_wf.checkIllegal(this, "FeaturePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FeaturePolicy_allowedFeatures, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FeaturePolicy_allowsFeature = function () { let r = cbb_wf.checkIllegal(this, "FeaturePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FeaturePolicy_allowsFeature, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FeaturePolicy_features = function () { let r = cbb_wf.checkIllegal(this, "FeaturePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FeaturePolicy_features, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FeaturePolicy_getAllowlistForFeature = function () { let r = cbb_wf.checkIllegal(this, "FeaturePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FeaturePolicy_getAllowlistForFeature, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.External_AddSearchProvider = function () { let r = cbb_wf.checkIllegal(this, "External"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "External_AddSearchProvider, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.External_IsSearchProviderInstalled = function () { let r = cbb_wf.checkIllegal(this, "External"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "External_IsSearchProviderInstalled, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventTarget_addEventListener = function () { let r = cbb_wf.checkIllegal(this, "EventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventTarget_addEventListener, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventTarget_dispatchEvent = function () { let r = cbb_wf.checkIllegal(this, "EventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventTarget_dispatchEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventTarget_removeEventListener = function () { let r = cbb_wf.checkIllegal(this, "EventTarget"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventTarget_removeEventListener, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventSource_get_url = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventSource_get_withCredentials = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'withCredentials'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_get_withCredentials, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventSource_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventSource_get_onopen = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onopen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_get_onopen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventSource_set_onopen = function (val) { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onopen', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_set_onopen, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EventSource_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventSource_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EventSource_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventSource_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EventSource_close = function () { let r = cbb_wf.checkIllegal(this, "EventSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventSource_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventCounts_get_size = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EventCounts_entries = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventCounts_forEach = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventCounts_get = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventCounts_has = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventCounts_keys = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EventCounts_values = function () { let r = cbb_wf.checkIllegal(this, "EventCounts"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EventCounts_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Event_get_type = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_target = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'target'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_target, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_currentTarget = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentTarget'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_currentTarget, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_eventPhase = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'eventPhase'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_eventPhase, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_bubbles = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bubbles'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_bubbles, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_cancelable = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cancelable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_cancelable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_defaultPrevented = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'defaultPrevented'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_defaultPrevented, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_composed = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'composed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_composed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_timeStamp = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timeStamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_timeStamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_srcElement = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'srcElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_srcElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_get_returnValue = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'returnValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_returnValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_set_returnValue = function (val) { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'returnValue', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_set_returnValue, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Event_get_cancelBubble = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cancelBubble'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_cancelBubble, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Event_set_cancelBubble = function (val) { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'cancelBubble', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_set_cancelBubble, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Event_composedPath = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_composedPath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Event_initEvent = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_initEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Event_preventDefault = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_preventDefault, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Event_stopImmediatePropagation = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_stopImmediatePropagation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Event_stopPropagation = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_stopPropagation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Event_get_path = function () { let r = cbb_wf.checkIllegal(this, "Event"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'path'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Event_get_path, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ErrorEvent_get_message = function () { let r = cbb_wf.checkIllegal(this, "ErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ErrorEvent_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ErrorEvent_get_filename = function () { let r = cbb_wf.checkIllegal(this, "ErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'filename'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ErrorEvent_get_filename, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ErrorEvent_get_lineno = function () { let r = cbb_wf.checkIllegal(this, "ErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lineno'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ErrorEvent_get_lineno, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ErrorEvent_get_colno = function () { let r = cbb_wf.checkIllegal(this, "ErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'colno'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ErrorEvent_get_colno, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ErrorEvent_get_error = function () { let r = cbb_wf.checkIllegal(this, "ErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ErrorEvent_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_form = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'form'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_form, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_willValidate = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'willValidate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_willValidate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_validity = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'validity'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_validity, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_validationMessage = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'validationMessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_validationMessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_labels = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'labels'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_labels, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_shadowRoot = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shadowRoot'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_shadowRoot, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_get_role = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'role'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_role, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_role = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'role', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_role, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaAtomic = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaAtomic'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaAtomic, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaAtomic = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaAtomic', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaAtomic, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaAutoComplete = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaAutoComplete'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaAutoComplete, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaAutoComplete = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaAutoComplete', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaAutoComplete, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaBusy = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaBusy'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaBusy, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaBusy = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaBusy', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaBusy, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaChecked = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaChecked'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaChecked, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaChecked = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaChecked', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaChecked, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaColCount = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaColCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaColCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaColCount = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaColCount', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaColCount, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaColIndex = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaColIndex'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaColIndex, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaColIndex = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaColIndex', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaColIndex, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaColSpan = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaColSpan'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaColSpan, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaColSpan = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaColSpan', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaColSpan, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaCurrent = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaCurrent'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaCurrent, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaCurrent = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaCurrent', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaCurrent, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaDescription = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaDescription = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaDescription', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaDescription, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaDisabled = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaDisabled'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaDisabled, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaDisabled = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaDisabled', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaDisabled, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaExpanded = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaExpanded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaExpanded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaExpanded = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaExpanded', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaExpanded, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaHasPopup = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaHasPopup'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaHasPopup, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaHasPopup = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaHasPopup', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaHasPopup, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaHidden = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaHidden'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaHidden, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaHidden = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaHidden', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaHidden, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaInvalid = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaInvalid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaInvalid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaInvalid = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaInvalid', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaInvalid, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaKeyShortcuts = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaKeyShortcuts'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaKeyShortcuts, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaKeyShortcuts = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaKeyShortcuts', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaKeyShortcuts, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaLabel = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaLabel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaLabel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaLabel = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaLabel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaLabel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaLevel = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaLevel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaLevel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaLevel = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaLevel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaLevel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaLive = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaLive'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaLive, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaLive = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaLive', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaLive, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaModal = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaModal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaModal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaModal = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaModal', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaModal, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaMultiLine = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaMultiLine'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaMultiLine, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaMultiLine = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaMultiLine', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaMultiLine, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaMultiSelectable = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaMultiSelectable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaMultiSelectable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaMultiSelectable = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaMultiSelectable', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaMultiSelectable, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaOrientation = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaOrientation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaOrientation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaOrientation = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaOrientation', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaOrientation, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaPlaceholder = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaPlaceholder'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaPlaceholder, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaPlaceholder = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaPlaceholder', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaPlaceholder, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaPosInSet = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaPosInSet'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaPosInSet, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaPosInSet = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaPosInSet', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaPosInSet, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaPressed = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaPressed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaPressed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaPressed = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaPressed', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaPressed, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaReadOnly = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaReadOnly'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaReadOnly, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaReadOnly = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaReadOnly', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaReadOnly, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaRelevant = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaRelevant'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaRelevant, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaRelevant = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaRelevant', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaRelevant, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaRequired = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaRequired'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaRequired, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaRequired = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaRequired', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaRequired, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaRoleDescription = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaRoleDescription'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaRoleDescription, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaRoleDescription = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaRoleDescription', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaRoleDescription, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaRowCount = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaRowCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaRowCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaRowCount = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaRowCount', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaRowCount, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaRowIndex = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaRowIndex'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaRowIndex, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaRowIndex = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaRowIndex', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaRowIndex, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaRowSpan = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaRowSpan'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaRowSpan, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaRowSpan = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaRowSpan', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaRowSpan, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaSelected = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaSelected'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaSelected, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaSelected = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaSelected', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaSelected, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaSetSize = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaSetSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaSetSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaSetSize = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaSetSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaSetSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaSort = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaSort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaSort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaSort = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaSort', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaSort, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaValueMax = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaValueMax'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaValueMax, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaValueMax = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaValueMax', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaValueMax, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaValueMin = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaValueMin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaValueMin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaValueMin = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaValueMin', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaValueMin, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaValueNow = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaValueNow'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaValueNow, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaValueNow = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaValueNow', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaValueNow, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_get_ariaValueText = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ariaValueText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_ariaValueText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ElementInternals_set_ariaValueText = function (val) { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ariaValueText', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_set_ariaValueText, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ElementInternals_checkValidity = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_checkValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ElementInternals_reportValidity = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_reportValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ElementInternals_setFormValue = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_setFormValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ElementInternals_setValidity = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_setValidity, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ElementInternals_get_states = function () { let r = cbb_wf.checkIllegal(this, "ElementInternals"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'states'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ElementInternals_get_states, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Element_get_namespaceURI = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.namespaceURI; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_namespaceURI, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_namespaceURI, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_namespaceURI, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_prefix = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.prefix; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_prefix, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_prefix, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_prefix, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_localName = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.localName; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_localName, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_localName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_localName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_tagName = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.tagName; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_tagName, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_tagName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_tagName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_id = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.id; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_id, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_id, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_id, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_id = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_id, set object'); break case "function": cbb_wf.console.log('[*] Element_set_id, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.id = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_id, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_className = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.className; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_className, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_className, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_className, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_className = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_className, set object'); break case "function": cbb_wf.console.log('[*] Element_set_className, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.className = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_className, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_classList = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.classList; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_classList, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_classList, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_classList, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_classList = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_classList, set object'); break case "function": cbb_wf.console.log('[*] Element_set_classList, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.classList = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_classList, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_slot = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.slot; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_slot, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_slot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_slot, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_slot = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_slot, set object'); break case "function": cbb_wf.console.log('[*] Element_set_slot, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.slot = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_slot, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_attributes = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.attributes; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_attributes, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_attributes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_attributes, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_shadowRoot = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shadowRoot; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_shadowRoot, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_shadowRoot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_shadowRoot, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_part = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.part; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_part, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_part, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_part, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_part = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_part, set object'); break case "function": cbb_wf.console.log('[*] Element_set_part, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.part = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_part, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_assignedSlot = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.assignedSlot; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_assignedSlot, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_assignedSlot, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_assignedSlot, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_innerHTML = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.innerHTML; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_innerHTML, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_innerHTML, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_innerHTML, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_innerHTML = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_innerHTML, set object'); break case "function": cbb_wf.console.log('[*] Element_set_innerHTML, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.innerHTML = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_innerHTML, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_outerHTML = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.outerHTML; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_outerHTML, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_outerHTML, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_outerHTML, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_outerHTML = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_outerHTML, set object'); break case "function": cbb_wf.console.log('[*] Element_set_outerHTML, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.outerHTML = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_outerHTML, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_scrollTop = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollTop; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_scrollTop, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_scrollTop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_scrollTop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_scrollTop = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_scrollTop, set object'); break case "function": cbb_wf.console.log('[*] Element_set_scrollTop, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scrollTop = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_scrollTop, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_scrollLeft = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollLeft; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_scrollLeft, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_scrollLeft, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_scrollLeft, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_scrollLeft = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_scrollLeft, set object'); break case "function": cbb_wf.console.log('[*] Element_set_scrollLeft, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.scrollLeft = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_scrollLeft, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_scrollWidth = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_scrollWidth, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_scrollWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_scrollWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_scrollHeight = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_scrollHeight, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_scrollHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_scrollHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_clientTop = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clientTop; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_clientTop, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_clientTop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_clientTop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_clientLeft = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clientLeft; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_clientLeft, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_clientLeft, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_clientLeft, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_clientWidth = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clientWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_clientWidth, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_clientWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_clientWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_clientHeight = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clientHeight; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_clientHeight, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_clientHeight, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_clientHeight, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_attributeStyleMap = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.attributeStyleMap; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_attributeStyleMap, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_attributeStyleMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_attributeStyleMap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_onbeforecopy = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforecopy; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onbeforecopy, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onbeforecopy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onbeforecopy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onbeforecopy = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onbeforecopy, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onbeforecopy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforecopy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onbeforecopy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onbeforecut = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforecut; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onbeforecut, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onbeforecut, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onbeforecut, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onbeforecut = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onbeforecut, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onbeforecut, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforecut = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onbeforecut, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onbeforepaste = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforepaste; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onbeforepaste, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onbeforepaste, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onbeforepaste, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onbeforepaste = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onbeforepaste, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onbeforepaste, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforepaste = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onbeforepaste, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onsearch = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsearch; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onsearch, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onsearch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onsearch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onsearch = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onsearch, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onsearch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsearch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onsearch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_elementTiming = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elementTiming; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_elementTiming, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_elementTiming, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_elementTiming, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_elementTiming = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_elementTiming, set object'); break case "function": cbb_wf.console.log('[*] Element_set_elementTiming, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.elementTiming = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_elementTiming, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onfullscreenchange = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfullscreenchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onfullscreenchange, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onfullscreenchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onfullscreenchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onfullscreenchange = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onfullscreenchange, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onfullscreenchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfullscreenchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onfullscreenchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onfullscreenerror = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfullscreenerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onfullscreenerror, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onfullscreenerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onfullscreenerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onfullscreenerror = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onfullscreenerror, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onfullscreenerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfullscreenerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onfullscreenerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onwebkitfullscreenchange = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitfullscreenchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onwebkitfullscreenchange, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onwebkitfullscreenchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onwebkitfullscreenchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onwebkitfullscreenchange = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onwebkitfullscreenchange, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onwebkitfullscreenchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitfullscreenchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onwebkitfullscreenchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_onwebkitfullscreenerror = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitfullscreenerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_onwebkitfullscreenerror, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_onwebkitfullscreenerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_onwebkitfullscreenerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_onwebkitfullscreenerror = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_onwebkitfullscreenerror, set object'); break case "function": cbb_wf.console.log('[*] Element_set_onwebkitfullscreenerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitfullscreenerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_onwebkitfullscreenerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_role = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.role; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_role, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_role, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_role, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_role = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_role, set object'); break case "function": cbb_wf.console.log('[*] Element_set_role, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.role = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_role, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaAtomic = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaAtomic; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaAtomic, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaAtomic, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaAtomic, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaAtomic = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaAtomic, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaAtomic, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaAtomic = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaAtomic, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaAutoComplete = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaAutoComplete; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaAutoComplete, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaAutoComplete, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaAutoComplete, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaAutoComplete = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaAutoComplete, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaAutoComplete, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaAutoComplete = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaAutoComplete, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaBusy = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaBusy; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaBusy, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaBusy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaBusy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaBusy = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaBusy, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaBusy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaBusy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaBusy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaChecked = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaChecked; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaChecked, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaChecked, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaChecked, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaChecked = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaChecked, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaChecked, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaChecked = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaChecked, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaColCount = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaColCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaColCount, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaColCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaColCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaColCount = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaColCount, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaColCount, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaColCount = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaColCount, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaColIndex = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaColIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaColIndex, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaColIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaColIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaColIndex = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaColIndex, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaColIndex, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaColIndex = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaColIndex, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaColSpan = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaColSpan; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaColSpan, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaColSpan, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaColSpan, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaColSpan = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaColSpan, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaColSpan, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaColSpan = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaColSpan, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaCurrent = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaCurrent; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaCurrent, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaCurrent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaCurrent, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaCurrent = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaCurrent, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaCurrent, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaCurrent = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaCurrent, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaDescription = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaDescription; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaDescription, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaDescription, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaDescription, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaDescription = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaDescription, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaDescription, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaDescription = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaDescription, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaDisabled = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaDisabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaDisabled, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaDisabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaDisabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaDisabled = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaDisabled, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaDisabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaDisabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaDisabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaExpanded = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaExpanded; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaExpanded, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaExpanded, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaExpanded, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaExpanded = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaExpanded, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaExpanded, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaExpanded = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaExpanded, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaHasPopup = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaHasPopup; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaHasPopup, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaHasPopup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaHasPopup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaHasPopup = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaHasPopup, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaHasPopup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaHasPopup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaHasPopup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaHidden = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaHidden; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaHidden, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaHidden, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaHidden, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaHidden = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaHidden, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaHidden, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaHidden = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaHidden, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaInvalid = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaInvalid; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaInvalid, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaInvalid, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaInvalid, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaInvalid = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaInvalid, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaInvalid, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaInvalid = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaInvalid, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaKeyShortcuts = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaKeyShortcuts; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaKeyShortcuts, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaKeyShortcuts, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaKeyShortcuts, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaKeyShortcuts = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaKeyShortcuts, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaKeyShortcuts, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaKeyShortcuts = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaKeyShortcuts, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaLabel = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaLabel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaLabel, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaLabel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaLabel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaLabel = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaLabel, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaLabel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaLabel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaLabel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaLevel = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaLevel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaLevel, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaLevel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaLevel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaLevel = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaLevel, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaLevel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaLevel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaLevel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaLive = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaLive; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaLive, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaLive, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaLive, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaLive = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaLive, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaLive, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaLive = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaLive, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaModal = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaModal; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaModal, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaModal, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaModal, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaModal = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaModal, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaModal, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaModal = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaModal, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaMultiLine = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaMultiLine; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaMultiLine, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaMultiLine, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaMultiLine, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaMultiLine = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaMultiLine, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaMultiLine, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaMultiLine = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaMultiLine, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaMultiSelectable = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaMultiSelectable; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaMultiSelectable, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaMultiSelectable, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaMultiSelectable, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaMultiSelectable = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaMultiSelectable, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaMultiSelectable, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaMultiSelectable = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaMultiSelectable, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaOrientation = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaOrientation; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaOrientation, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaOrientation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaOrientation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaOrientation = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaOrientation, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaOrientation, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaOrientation = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaOrientation, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaPlaceholder = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaPlaceholder; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaPlaceholder, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaPlaceholder, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaPlaceholder, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaPlaceholder = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaPlaceholder, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaPlaceholder, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaPlaceholder = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaPlaceholder, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaPosInSet = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaPosInSet; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaPosInSet, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaPosInSet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaPosInSet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaPosInSet = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaPosInSet, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaPosInSet, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaPosInSet = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaPosInSet, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaPressed = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaPressed; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaPressed, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaPressed, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaPressed, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaPressed = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaPressed, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaPressed, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaPressed = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaPressed, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaReadOnly = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaReadOnly; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaReadOnly, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaReadOnly, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaReadOnly, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaReadOnly = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaReadOnly, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaReadOnly, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaReadOnly = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaReadOnly, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaRelevant = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaRelevant; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaRelevant, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaRelevant, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaRelevant, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaRelevant = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaRelevant, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaRelevant, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaRelevant = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaRelevant, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaRequired = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaRequired; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaRequired, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaRequired, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaRequired, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaRequired = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaRequired, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaRequired, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaRequired = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaRequired, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaRoleDescription = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaRoleDescription; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaRoleDescription, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaRoleDescription, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaRoleDescription, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaRoleDescription = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaRoleDescription, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaRoleDescription, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaRoleDescription = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaRoleDescription, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaRowCount = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaRowCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaRowCount, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaRowCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaRowCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaRowCount = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaRowCount, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaRowCount, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaRowCount = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaRowCount, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaRowIndex = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaRowIndex; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaRowIndex, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaRowIndex, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaRowIndex, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaRowIndex = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaRowIndex, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaRowIndex, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaRowIndex = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaRowIndex, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaRowSpan = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaRowSpan; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaRowSpan, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaRowSpan, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaRowSpan, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaRowSpan = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaRowSpan, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaRowSpan, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaRowSpan = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaRowSpan, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaSelected = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaSelected; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaSelected, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaSelected, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaSelected, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaSelected = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaSelected, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaSelected, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaSelected = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaSelected, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaSetSize = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaSetSize; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaSetSize, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaSetSize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaSetSize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaSetSize = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaSetSize, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaSetSize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaSetSize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaSetSize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaSort = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaSort; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaSort, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaSort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaSort, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaSort = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaSort, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaSort, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaSort = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaSort, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaValueMax = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaValueMax; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaValueMax, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaValueMax, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaValueMax, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaValueMax = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaValueMax, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaValueMax, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaValueMax = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaValueMax, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaValueMin = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaValueMin; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaValueMin, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaValueMin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaValueMin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaValueMin = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaValueMin, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaValueMin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaValueMin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaValueMin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaValueNow = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaValueNow; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaValueNow, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaValueNow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaValueNow, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaValueNow = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaValueNow, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaValueNow, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaValueNow = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaValueNow, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_ariaValueText = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ariaValueText; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_ariaValueText, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_ariaValueText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_ariaValueText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_set_ariaValueText = function (val) { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Element_set_ariaValueText, set object'); break case "function": cbb_wf.console.log('[*] Element_set_ariaValueText, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ariaValueText = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_set_ariaValueText, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Element_get_children = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.children; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_children, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_children, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_children, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_firstElementChild = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.firstElementChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_firstElementChild, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_firstElementChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_firstElementChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_lastElementChild = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lastElementChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_lastElementChild, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_lastElementChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_lastElementChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_childElementCount = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.childElementCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_childElementCount, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_childElementCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_childElementCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_previousElementSibling = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousElementSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_previousElementSibling, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_previousElementSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_previousElementSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_get_nextElementSibling = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextElementSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_get_nextElementSibling, 返回object'); break case "function": cbb_wf.console.log('[*] Element_get_nextElementSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_get_nextElementSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Element_after = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.after.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_after, 返回object'); break case "function": cbb_wf.console.log('[*] Element_after, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_after, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_animate = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.animate.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_animate, 返回object'); break case "function": cbb_wf.console.log('[*] Element_animate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_animate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_append = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.append.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_append, 返回object'); break case "function": cbb_wf.console.log('[*] Element_append, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_attachShadow = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.attachShadow.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_attachShadow, 返回object'); break case "function": cbb_wf.console.log('[*] Element_attachShadow, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_attachShadow, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_before = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.before.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_before, 返回object'); break case "function": cbb_wf.console.log('[*] Element_before, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_before, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_closest = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.console.log(arguments); let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.closest.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_closest, 返回object'); break case "function": cbb_wf.console.log('[*] Element_closest, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_closest, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_computedStyleMap = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.computedStyleMap.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_computedStyleMap, 返回object'); break case "function": cbb_wf.console.log('[*] Element_computedStyleMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_computedStyleMap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getAttribute = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAttribute.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getAttribute, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getAttribute, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getAttribute, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getAttributeNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAttributeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getAttributeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getAttributeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getAttributeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getAttributeNames = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAttributeNames.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getAttributeNames, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getAttributeNames, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getAttributeNames, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getAttributeNode = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAttributeNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getAttributeNode, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getAttributeNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getAttributeNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getAttributeNodeNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAttributeNodeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getAttributeNodeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getAttributeNodeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getAttributeNodeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getBoundingClientRect = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getBoundingClientRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getBoundingClientRect, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getBoundingClientRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getBoundingClientRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getClientRects = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getClientRects.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getClientRects, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getClientRects, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getClientRects, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getElementsByClassName = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByClassName.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getElementsByClassName, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getElementsByClassName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getElementsByClassName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getElementsByTagName = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByTagName.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getElementsByTagName, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getElementsByTagName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getElementsByTagName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getElementsByTagNameNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByTagNameNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getElementsByTagNameNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getElementsByTagNameNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getElementsByTagNameNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getInnerHTML = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getInnerHTML.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getInnerHTML, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getInnerHTML, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getInnerHTML, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_hasAttribute = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasAttribute.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_hasAttribute, 返回object'); break case "function": cbb_wf.console.log('[*] Element_hasAttribute, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_hasAttribute, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_hasAttributeNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasAttributeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_hasAttributeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_hasAttributeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_hasAttributeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_hasAttributes = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasAttributes.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_hasAttributes, 返回object'); break case "function": cbb_wf.console.log('[*] Element_hasAttributes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_hasAttributes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_hasPointerCapture = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasPointerCapture.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_hasPointerCapture, 返回object'); break case "function": cbb_wf.console.log('[*] Element_hasPointerCapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_hasPointerCapture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_insertAdjacentElement = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertAdjacentElement.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_insertAdjacentElement, 返回object'); break case "function": cbb_wf.console.log('[*] Element_insertAdjacentElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_insertAdjacentElement, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_insertAdjacentHTML = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertAdjacentHTML.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_insertAdjacentHTML, 返回object'); break case "function": cbb_wf.console.log('[*] Element_insertAdjacentHTML, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_insertAdjacentHTML, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_insertAdjacentText = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertAdjacentText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_insertAdjacentText, 返回object'); break case "function": cbb_wf.console.log('[*] Element_insertAdjacentText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_insertAdjacentText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_matches = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.matches.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_matches, 返回object'); break case "function": cbb_wf.console.log('[*] Element_matches, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_matches, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_prepend = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.prepend.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_prepend, 返回object'); break case "function": cbb_wf.console.log('[*] Element_prepend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_prepend, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_querySelector = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.querySelector.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_querySelector, 返回object'); break case "function": cbb_wf.console.log('[*] Element_querySelector, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_querySelector, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_querySelectorAll = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.querySelectorAll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_querySelectorAll, 返回object'); break case "function": cbb_wf.console.log('[*] Element_querySelectorAll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_querySelectorAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_releasePointerCapture = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.releasePointerCapture.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_releasePointerCapture, 返回object'); break case "function": cbb_wf.console.log('[*] Element_releasePointerCapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_releasePointerCapture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_remove = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remove.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_remove, 返回object'); break case "function": cbb_wf.console.log('[*] Element_remove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_removeAttribute = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeAttribute.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_removeAttribute, 返回object'); break case "function": cbb_wf.console.log('[*] Element_removeAttribute, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_removeAttribute, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_removeAttributeNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeAttributeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_removeAttributeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_removeAttributeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_removeAttributeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_removeAttributeNode = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeAttributeNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_removeAttributeNode, 返回object'); break case "function": cbb_wf.console.log('[*] Element_removeAttributeNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_removeAttributeNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_replaceChildren = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceChildren.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_replaceChildren, 返回object'); break case "function": cbb_wf.console.log('[*] Element_replaceChildren, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_replaceChildren, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_replaceWith = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceWith.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_replaceWith, 返回object'); break case "function": cbb_wf.console.log('[*] Element_replaceWith, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_replaceWith, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_requestFullscreen = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requestFullscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_requestFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] Element_requestFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_requestFullscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_requestPointerLock = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.requestPointerLock.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_requestPointerLock, 返回object'); break case "function": cbb_wf.console.log('[*] Element_requestPointerLock, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_requestPointerLock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_scroll = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scroll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_scroll, 返回object'); break case "function": cbb_wf.console.log('[*] Element_scroll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_scroll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_scrollBy = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollBy.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_scrollBy, 返回object'); break case "function": cbb_wf.console.log('[*] Element_scrollBy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_scrollBy, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_scrollIntoView = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollIntoView.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_scrollIntoView, 返回object'); break case "function": cbb_wf.console.log('[*] Element_scrollIntoView, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_scrollIntoView, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_scrollIntoViewIfNeeded = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollIntoViewIfNeeded.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_scrollIntoViewIfNeeded, 返回object'); break case "function": cbb_wf.console.log('[*] Element_scrollIntoViewIfNeeded, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_scrollIntoViewIfNeeded, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_scrollTo = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollTo.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_scrollTo, 返回object'); break case "function": cbb_wf.console.log('[*] Element_scrollTo, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_scrollTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_setAttribute = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setAttribute.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_setAttribute, 返回object'); break case "function": cbb_wf.console.log('[*] Element_setAttribute, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_setAttribute, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_setAttributeNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setAttributeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_setAttributeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_setAttributeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_setAttributeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_setAttributeNode = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setAttributeNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_setAttributeNode, 返回object'); break case "function": cbb_wf.console.log('[*] Element_setAttributeNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_setAttributeNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_setAttributeNodeNS = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setAttributeNodeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_setAttributeNodeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Element_setAttributeNodeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_setAttributeNodeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_setPointerCapture = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setPointerCapture.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_setPointerCapture, 返回object'); break case "function": cbb_wf.console.log('[*] Element_setPointerCapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_setPointerCapture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_toggleAttribute = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toggleAttribute.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_toggleAttribute, 返回object'); break case "function": cbb_wf.console.log('[*] Element_toggleAttribute, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_toggleAttribute, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_webkitMatchesSelector = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitMatchesSelector.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_webkitMatchesSelector, 返回object'); break case "function": cbb_wf.console.log('[*] Element_webkitMatchesSelector, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_webkitMatchesSelector, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_webkitRequestFullScreen = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitRequestFullScreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_webkitRequestFullScreen, 返回object'); break case "function": cbb_wf.console.log('[*] Element_webkitRequestFullScreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_webkitRequestFullScreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_webkitRequestFullscreen = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitRequestFullscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_webkitRequestFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] Element_webkitRequestFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_webkitRequestFullscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Element_getAnimations = function () { let r = cbb_wf.checkIllegal(this, "Element"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAnimations.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Element_getAnimations, 返回object'); break case "function": cbb_wf.console.log('[*] Element_getAnimations, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Element_getAnimations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DynamicsCompressorNode_get_threshold = function () { let r = cbb_wf.checkIllegal(this, "DynamicsCompressorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'threshold'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DynamicsCompressorNode_get_threshold, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DynamicsCompressorNode_get_knee = function () { let r = cbb_wf.checkIllegal(this, "DynamicsCompressorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'knee'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DynamicsCompressorNode_get_knee, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DynamicsCompressorNode_get_ratio = function () { let r = cbb_wf.checkIllegal(this, "DynamicsCompressorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ratio'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DynamicsCompressorNode_get_ratio, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DynamicsCompressorNode_get_reduction = function () { let r = cbb_wf.checkIllegal(this, "DynamicsCompressorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reduction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DynamicsCompressorNode_get_reduction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DynamicsCompressorNode_get_attack = function () { let r = cbb_wf.checkIllegal(this, "DynamicsCompressorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'attack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DynamicsCompressorNode_get_attack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DynamicsCompressorNode_get_release = function () { let r = cbb_wf.checkIllegal(this, "DynamicsCompressorNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'release'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DynamicsCompressorNode_get_release, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DragEvent_get_dataTransfer = function () { let r = cbb_wf.checkIllegal(this, "DragEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dataTransfer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DragEvent_get_dataTransfer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DocumentType_get_name = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentType_get_publicId = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.publicId; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_get_publicId, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_get_publicId, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_get_publicId, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentType_get_systemId = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.systemId; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_get_systemId, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_get_systemId, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_get_systemId, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentType_after = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.after.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_after, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_after, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_after, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentType_before = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.before.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_before, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_before, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_before, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentType_remove = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remove.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_remove, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_remove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentType_replaceWith = function () { let r = cbb_wf.checkIllegal(this, "DocumentType"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceWith.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentType_replaceWith, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentType_replaceWith, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentType_replaceWith, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentFragment_get_children = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.children; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_get_children, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_get_children, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_get_children, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentFragment_get_firstElementChild = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.firstElementChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_get_firstElementChild, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_get_firstElementChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_get_firstElementChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentFragment_get_lastElementChild = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lastElementChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_get_lastElementChild, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_get_lastElementChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_get_lastElementChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentFragment_get_childElementCount = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.childElementCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_get_childElementCount, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_get_childElementCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_get_childElementCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DocumentFragment_append = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.append.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_append, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_append, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentFragment_getElementById = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementById.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_getElementById, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_getElementById, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_getElementById, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentFragment_prepend = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.prepend.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_prepend, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_prepend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_prepend, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentFragment_querySelector = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.querySelector.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_querySelector, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_querySelector, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_querySelector, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentFragment_querySelectorAll = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.querySelectorAll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_querySelectorAll, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_querySelectorAll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_querySelectorAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DocumentFragment_replaceChildren = function () { let r = cbb_wf.checkIllegal(this, "DocumentFragment"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceChildren.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DocumentFragment_replaceChildren, 返回object'); break case "function": cbb_wf.console.log('[*] DocumentFragment_replaceChildren, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DocumentFragment_replaceChildren, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_get_implementation = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.implementation; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_implementation, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_implementation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_implementation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_URL = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.URL; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_URL, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_URL, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_URL, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_documentURI = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.documentURI; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_documentURI, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_documentURI, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_documentURI, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_compatMode = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.compatMode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_compatMode, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_compatMode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_compatMode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_characterSet = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.characterSet; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_characterSet, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_characterSet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_characterSet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_charset = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.charset; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_charset, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_charset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_charset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_inputEncoding = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.inputEncoding; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_inputEncoding, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_inputEncoding, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_inputEncoding, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_contentType = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contentType; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_contentType, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_contentType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_contentType, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_doctype = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.doctype; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_doctype, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_doctype, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_doctype, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_documentElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.documentElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_documentElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_documentElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_documentElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_xmlEncoding = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.xmlEncoding; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_xmlEncoding, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_xmlEncoding, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_xmlEncoding, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_xmlVersion = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.xmlVersion; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_xmlVersion, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_xmlVersion, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_xmlVersion, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_xmlVersion = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_xmlVersion, set object'); break case "function": cbb_wf.console.log('[*] Document_set_xmlVersion, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.xmlVersion = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_xmlVersion, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_xmlStandalone = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.xmlStandalone; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_xmlStandalone, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_xmlStandalone, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_xmlStandalone, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_xmlStandalone = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_xmlStandalone, set object'); break case "function": cbb_wf.console.log('[*] Document_set_xmlStandalone, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.xmlStandalone = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_xmlStandalone, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_domain = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.domain; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_domain, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_domain, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_domain, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_domain = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_domain, set object'); break case "function": cbb_wf.console.log('[*] Document_set_domain, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.domain = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_domain, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_referrer = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.referrer; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_referrer, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_referrer, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_referrer, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_cookie = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cookie; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_cookie, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_cookie, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_cookie, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_cookie = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_cookie, set object'); break case "function": cbb_wf.console.log('[*] Document_set_cookie, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cookie = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_cookie, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_lastModified = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lastModified; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_lastModified, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_lastModified, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_lastModified, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.readyState; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_readyState, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_readyState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_readyState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_title = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.title; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_title, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_title, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_title, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_title = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_title, set object'); break case "function": cbb_wf.console.log('[*] Document_set_title, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.title = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_title, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_dir = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.dir; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_dir, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_dir, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_dir, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_dir = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_dir, set object'); break case "function": cbb_wf.console.log('[*] Document_set_dir, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.dir = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_dir, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_body = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.body; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_body, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_body, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_body, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_body = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_body, set object'); break case "function": cbb_wf.console.log('[*] Document_set_body, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.body = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_body, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_head = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.head; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_head, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_head, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_head, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_images = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.images; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_images, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_images, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_images, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_embeds = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.embeds; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_embeds, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_embeds, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_embeds, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_plugins = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.plugins; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_plugins, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_plugins, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_plugins, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_links = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.links; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_links, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_links, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_links, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_forms = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.forms; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_forms, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_forms, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_forms, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_scripts = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scripts; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_scripts, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_scripts, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_scripts, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_currentScript = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.currentScript; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_currentScript, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_currentScript, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_currentScript, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_defaultView = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.defaultView; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_defaultView, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_defaultView, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_defaultView, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_designMode = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.designMode; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_designMode, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_designMode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_designMode, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_designMode = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_designMode, set object'); break case "function": cbb_wf.console.log('[*] Document_set_designMode, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.designMode = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_designMode, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onreadystatechange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onreadystatechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onreadystatechange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onreadystatechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onreadystatechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onreadystatechange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onreadystatechange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onreadystatechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onreadystatechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onreadystatechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_anchors = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.anchors; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_anchors, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_anchors, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_anchors, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_applets = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.applets; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_applets, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_applets, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_applets, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_fgColor = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_fgColor, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_fgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_fgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_fgColor = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_fgColor, set object'); break case "function": cbb_wf.console.log('[*] Document_set_fgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_fgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_linkColor = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.linkColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_linkColor, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_linkColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_linkColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_linkColor = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_linkColor, set object'); break case "function": cbb_wf.console.log('[*] Document_set_linkColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.linkColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_linkColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_vlinkColor = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.vlinkColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_vlinkColor, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_vlinkColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_vlinkColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_vlinkColor = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_vlinkColor, set object'); break case "function": cbb_wf.console.log('[*] Document_set_vlinkColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.vlinkColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_vlinkColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_alinkColor = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.alinkColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_alinkColor, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_alinkColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_alinkColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_alinkColor = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_alinkColor, set object'); break case "function": cbb_wf.console.log('[*] Document_set_alinkColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.alinkColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_alinkColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_bgColor = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bgColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_bgColor, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_bgColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_bgColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_bgColor = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_bgColor, set object'); break case "function": cbb_wf.console.log('[*] Document_set_bgColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.bgColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_bgColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_all = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.all; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_all, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_all, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_all, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_scrollingElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scrollingElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_scrollingElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_scrollingElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_scrollingElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_onpointerlockchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerlockchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerlockchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerlockchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerlockchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerlockchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerlockchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerlockchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerlockchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerlockchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerlockerror = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerlockerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerlockerror, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerlockerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerlockerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerlockerror = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerlockerror, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerlockerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerlockerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerlockerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_hidden = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hidden; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_hidden, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_hidden, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_hidden, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_visibilityState = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.visibilityState; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_visibilityState, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_visibilityState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_visibilityState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_wasDiscarded = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.wasDiscarded; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_wasDiscarded, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_wasDiscarded, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_wasDiscarded, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_featurePolicy = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.featurePolicy; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_featurePolicy, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_featurePolicy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_featurePolicy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_webkitVisibilityState = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitVisibilityState; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_webkitVisibilityState, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_webkitVisibilityState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_webkitVisibilityState, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_webkitHidden = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitHidden; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_webkitHidden, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_webkitHidden, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_webkitHidden, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_onbeforecopy = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforecopy; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onbeforecopy, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onbeforecopy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onbeforecopy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onbeforecopy = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onbeforecopy, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onbeforecopy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforecopy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onbeforecopy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onbeforecut = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforecut; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onbeforecut, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onbeforecut, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onbeforecut, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onbeforecut = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onbeforecut, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onbeforecut, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforecut = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onbeforecut, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onbeforepaste = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforepaste; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onbeforepaste, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onbeforepaste, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onbeforepaste, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onbeforepaste = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onbeforepaste, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onbeforepaste, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforepaste = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onbeforepaste, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onfreeze = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfreeze; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onfreeze, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onfreeze, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onfreeze, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onfreeze = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onfreeze, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onfreeze, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfreeze = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onfreeze, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onresume = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onresume; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onresume, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onresume, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onresume, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onresume = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onresume, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onresume, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onresume = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onresume, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onsearch = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsearch; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onsearch, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onsearch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onsearch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onsearch = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onsearch, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onsearch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsearch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onsearch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onvisibilitychange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onvisibilitychange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onvisibilitychange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onvisibilitychange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onvisibilitychange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onvisibilitychange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onvisibilitychange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onvisibilitychange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onvisibilitychange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onvisibilitychange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_fullscreenEnabled = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fullscreenEnabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_fullscreenEnabled, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_fullscreenEnabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_fullscreenEnabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_fullscreenEnabled = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_fullscreenEnabled, set object'); break case "function": cbb_wf.console.log('[*] Document_set_fullscreenEnabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fullscreenEnabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_fullscreenEnabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_fullscreen = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fullscreen; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_fullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_fullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_fullscreen, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_fullscreen = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_fullscreen, set object'); break case "function": cbb_wf.console.log('[*] Document_set_fullscreen, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fullscreen = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_fullscreen, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onfullscreenchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfullscreenchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onfullscreenchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onfullscreenchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onfullscreenchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onfullscreenchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onfullscreenchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onfullscreenchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfullscreenchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onfullscreenchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onfullscreenerror = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfullscreenerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onfullscreenerror, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onfullscreenerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onfullscreenerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onfullscreenerror = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onfullscreenerror, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onfullscreenerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfullscreenerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onfullscreenerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_webkitIsFullScreen = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitIsFullScreen; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_webkitIsFullScreen, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_webkitIsFullScreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_webkitIsFullScreen, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_webkitCurrentFullScreenElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitCurrentFullScreenElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_webkitCurrentFullScreenElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_webkitCurrentFullScreenElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_webkitCurrentFullScreenElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_webkitFullscreenEnabled = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitFullscreenEnabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_webkitFullscreenEnabled, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_webkitFullscreenEnabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_webkitFullscreenEnabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_webkitFullscreenElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitFullscreenElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_webkitFullscreenElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_webkitFullscreenElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_webkitFullscreenElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_onwebkitfullscreenchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitfullscreenchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwebkitfullscreenchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwebkitfullscreenchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwebkitfullscreenchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwebkitfullscreenchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwebkitfullscreenchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwebkitfullscreenchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitfullscreenchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwebkitfullscreenchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwebkitfullscreenerror = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitfullscreenerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwebkitfullscreenerror, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwebkitfullscreenerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwebkitfullscreenerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwebkitfullscreenerror = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwebkitfullscreenerror, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwebkitfullscreenerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitfullscreenerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwebkitfullscreenerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_rootElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rootElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_rootElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_rootElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_rootElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_onbeforexrselect = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforexrselect; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onbeforexrselect, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onbeforexrselect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onbeforexrselect, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onbeforexrselect = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onbeforexrselect, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onbeforexrselect, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforexrselect = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onbeforexrselect, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onabort; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onabort, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onabort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onabort, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onabort, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onabort, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onabort = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onabort, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onblur = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onblur; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onblur, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onblur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onblur, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onblur = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onblur, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onblur, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onblur = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onblur, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncancel = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncancel, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncancel = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncancel, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncanplay = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncanplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncanplay, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncanplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncanplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncanplay = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncanplay, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncanplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncanplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncanplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncanplaythrough = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncanplaythrough; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncanplaythrough, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncanplaythrough, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncanplaythrough, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncanplaythrough = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncanplaythrough, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncanplaythrough, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncanplaythrough = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncanplaythrough, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onclick = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onclick, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onclick = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onclick, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onclose; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onclose, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onclose, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onclose, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onclose, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onclose, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onclose = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onclose, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncontextlost = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextlost; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncontextlost, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncontextlost, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncontextlost, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncontextlost = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncontextlost, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncontextlost, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextlost = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncontextlost, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncontextmenu = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextmenu; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncontextmenu, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncontextmenu, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncontextmenu, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncontextmenu = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncontextmenu, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncontextmenu, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextmenu = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncontextmenu, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncontextrestored = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncontextrestored; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncontextrestored, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncontextrestored, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncontextrestored, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncontextrestored = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncontextrestored, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncontextrestored, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncontextrestored = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncontextrestored, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncuechange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncuechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncuechange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncuechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncuechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncuechange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncuechange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncuechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncuechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncuechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondblclick = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondblclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondblclick, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondblclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondblclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondblclick = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondblclick, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondblclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondblclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondblclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondrag = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondrag; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondrag, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondrag, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondrag, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondrag = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondrag, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondrag, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondrag = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondrag, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondragend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragend; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondragend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondragend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondragend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondragend = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondragend, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondragend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondragend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondragenter = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondragenter, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondragenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondragenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondragenter = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondragenter, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondragenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondragenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondragleave = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondragleave, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondragleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondragleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondragleave = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondragleave, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondragleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondragleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondragover = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragover; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondragover, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondragover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondragover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondragover = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondragover, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondragover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondragover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondragstart = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondragstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondragstart, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondragstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondragstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondragstart = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondragstart, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondragstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondragstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondragstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondrop = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondrop; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondrop, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondrop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondrop, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondrop = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondrop, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondrop, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondrop = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondrop, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ondurationchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ondurationchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ondurationchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ondurationchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ondurationchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ondurationchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ondurationchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ondurationchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ondurationchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ondurationchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onemptied = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onemptied; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onemptied, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onemptied, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onemptied, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onemptied = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onemptied, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onemptied, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onemptied = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onemptied, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onended = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onended; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onended, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onended, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onended, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onended = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onended, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onended, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onended = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onended, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onerror; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onerror, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onerror, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onerror, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onerror, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onerror, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onerror = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onerror, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onfocus = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onfocus; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onfocus, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onfocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onfocus, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onfocus = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onfocus, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onfocus, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onfocus = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onfocus, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onformdata = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onformdata; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onformdata, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onformdata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onformdata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onformdata = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onformdata, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onformdata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onformdata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onformdata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oninput = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oninput; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oninput, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oninput, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oninput, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oninput = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oninput, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oninput, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oninput = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oninput, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oninvalid = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oninvalid; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oninvalid, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oninvalid, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oninvalid, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oninvalid = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oninvalid, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oninvalid, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oninvalid = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oninvalid, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onkeydown = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeydown; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onkeydown, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onkeydown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onkeydown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onkeydown = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onkeydown, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onkeydown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeydown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onkeydown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onkeypress = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeypress; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onkeypress, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onkeypress, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onkeypress, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onkeypress = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onkeypress, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onkeypress, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeypress = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onkeypress, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onkeyup = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onkeyup; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onkeyup, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onkeyup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onkeyup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onkeyup = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onkeyup, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onkeyup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onkeyup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onkeyup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onload = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onload; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onload, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onload, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onload, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onload = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onload, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onload, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onload = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onload, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onloadeddata = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadeddata; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onloadeddata, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onloadeddata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onloadeddata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onloadeddata = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onloadeddata, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onloadeddata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadeddata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onloadeddata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onloadedmetadata = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadedmetadata; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onloadedmetadata, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onloadedmetadata, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onloadedmetadata, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onloadedmetadata = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onloadedmetadata, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onloadedmetadata, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadedmetadata = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onloadedmetadata, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onloadstart = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onloadstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onloadstart, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onloadstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onloadstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onloadstart = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onloadstart, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onloadstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onloadstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onloadstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmousedown = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousedown; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmousedown, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmousedown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmousedown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmousedown = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmousedown, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmousedown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousedown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmousedown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmouseenter = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmouseenter, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmouseenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmouseenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmouseenter = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmouseenter, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmouseenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmouseenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmouseleave = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmouseleave, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmouseleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmouseleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmouseleave = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmouseleave, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmouseleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmouseleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmousemove = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousemove; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmousemove, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmousemove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmousemove, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmousemove = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmousemove, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmousemove, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousemove = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmousemove, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmouseout = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseout; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmouseout, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmouseout, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmouseout, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmouseout = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmouseout, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmouseout, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseout = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmouseout, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmouseover = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseover; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmouseover, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmouseover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmouseover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmouseover = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmouseover, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmouseover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmouseover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmouseup = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmouseup; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmouseup, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmouseup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmouseup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmouseup = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmouseup, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmouseup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmouseup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmouseup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onmousewheel = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onmousewheel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onmousewheel, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onmousewheel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onmousewheel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onmousewheel = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onmousewheel, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onmousewheel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onmousewheel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onmousewheel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpause = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpause; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpause, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpause, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpause, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpause = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpause, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpause, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpause = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpause, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onplay = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onplay; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onplay, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onplay, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onplay, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onplay = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onplay, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onplay, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onplay = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onplay, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onplaying = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onplaying; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onplaying, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onplaying, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onplaying, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onplaying = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onplaying, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onplaying, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onplaying = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onplaying, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onprogress = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onprogress; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onprogress, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onprogress, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onprogress, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onprogress = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onprogress, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onprogress, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onprogress = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onprogress, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onratechange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onratechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onratechange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onratechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onratechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onratechange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onratechange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onratechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onratechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onratechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onreset = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onreset; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onreset, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onreset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onreset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onreset = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onreset, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onreset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onreset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onreset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onresize; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onresize, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onresize, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onresize, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onresize, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onresize, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onresize = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onresize, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onscroll = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onscroll; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onscroll, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onscroll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onscroll, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onscroll = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onscroll, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onscroll, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onscroll = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onscroll, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onsecuritypolicyviolation = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsecuritypolicyviolation; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onsecuritypolicyviolation, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onsecuritypolicyviolation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onsecuritypolicyviolation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onsecuritypolicyviolation = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onsecuritypolicyviolation, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onsecuritypolicyviolation, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsecuritypolicyviolation = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onsecuritypolicyviolation, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onseeked = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onseeked; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onseeked, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onseeked, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onseeked, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onseeked = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onseeked, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onseeked, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onseeked = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onseeked, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onseeking = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onseeking; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onseeking, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onseeking, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onseeking, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onseeking = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onseeking, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onseeking, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onseeking = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onseeking, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onselect = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselect; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onselect, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onselect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onselect, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onselect = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onselect, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onselect, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselect = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onselect, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onslotchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onslotchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onslotchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onslotchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onslotchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onslotchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onslotchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onslotchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onslotchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onslotchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onstalled = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onstalled; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onstalled, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onstalled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onstalled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onstalled = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onstalled, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onstalled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onstalled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onstalled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onsubmit = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsubmit; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onsubmit, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onsubmit, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onsubmit, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onsubmit = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onsubmit, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onsubmit, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsubmit = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onsubmit, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onsuspend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onsuspend; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onsuspend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onsuspend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onsuspend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onsuspend = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onsuspend, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onsuspend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onsuspend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onsuspend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ontimeupdate = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontimeupdate; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ontimeupdate, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ontimeupdate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ontimeupdate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ontimeupdate = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ontimeupdate, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ontimeupdate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontimeupdate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ontimeupdate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ontoggle = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontoggle; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ontoggle, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ontoggle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ontoggle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ontoggle = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ontoggle, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ontoggle, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontoggle = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ontoggle, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onvolumechange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onvolumechange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onvolumechange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onvolumechange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onvolumechange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onvolumechange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onvolumechange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onvolumechange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onvolumechange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onvolumechange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwaiting = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwaiting; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwaiting, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwaiting, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwaiting, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwaiting = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwaiting, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwaiting, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwaiting = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwaiting, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwebkitanimationend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationend; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwebkitanimationend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwebkitanimationend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwebkitanimationend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwebkitanimationend = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwebkitanimationend, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwebkitanimationend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwebkitanimationend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwebkitanimationiteration = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationiteration; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwebkitanimationiteration, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwebkitanimationiteration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwebkitanimationiteration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwebkitanimationiteration = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwebkitanimationiteration, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwebkitanimationiteration, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationiteration = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwebkitanimationiteration, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwebkitanimationstart = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkitanimationstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwebkitanimationstart, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwebkitanimationstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwebkitanimationstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwebkitanimationstart = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwebkitanimationstart, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwebkitanimationstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkitanimationstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwebkitanimationstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwebkittransitionend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwebkittransitionend; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwebkittransitionend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwebkittransitionend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwebkittransitionend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwebkittransitionend = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwebkittransitionend, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwebkittransitionend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwebkittransitionend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwebkittransitionend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onwheel = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onwheel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onwheel, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onwheel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onwheel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onwheel = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onwheel, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onwheel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onwheel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onwheel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onauxclick = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onauxclick; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onauxclick, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onauxclick, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onauxclick, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onauxclick = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onauxclick, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onauxclick, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onauxclick = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onauxclick, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ongotpointercapture = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ongotpointercapture; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ongotpointercapture, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ongotpointercapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ongotpointercapture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ongotpointercapture = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ongotpointercapture, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ongotpointercapture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ongotpointercapture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ongotpointercapture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onlostpointercapture = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onlostpointercapture; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onlostpointercapture, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onlostpointercapture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onlostpointercapture, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onlostpointercapture = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onlostpointercapture, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onlostpointercapture, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onlostpointercapture = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onlostpointercapture, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerdown = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerdown; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerdown, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerdown, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerdown, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerdown = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerdown, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerdown, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerdown = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerdown, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointermove = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointermove; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointermove, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointermove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointermove, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointermove = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointermove, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointermove, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointermove = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointermove, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerup = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerup; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerup, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerup, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerup, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerup = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerup, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerup, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerup = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerup, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointercancel = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointercancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointercancel, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointercancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointercancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointercancel = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointercancel, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointercancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointercancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointercancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerover = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerover; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerover, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerover, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerover, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerover = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerover, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerover, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerover = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerover, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerout = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerout; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerout, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerout, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerout, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerout = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerout, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerout, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerout = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerout, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerenter = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerenter; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerenter, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerenter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerenter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerenter = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerenter, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerenter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerenter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerenter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpointerleave = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerleave; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerleave, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerleave, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerleave, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerleave = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerleave, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerleave, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerleave = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerleave, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onselectstart = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselectstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onselectstart, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onselectstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onselectstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onselectstart = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onselectstart, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onselectstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselectstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onselectstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onselectionchange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onselectionchange; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onselectionchange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onselectionchange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onselectionchange, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onselectionchange = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onselectionchange, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onselectionchange, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onselectionchange = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onselectionchange, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onanimationend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationend; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onanimationend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onanimationend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onanimationend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onanimationend = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onanimationend, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onanimationend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onanimationend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onanimationiteration = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationiteration; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onanimationiteration, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onanimationiteration, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onanimationiteration, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onanimationiteration = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onanimationiteration, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onanimationiteration, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationiteration = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onanimationiteration, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onanimationstart = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onanimationstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onanimationstart, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onanimationstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onanimationstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onanimationstart = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onanimationstart, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onanimationstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onanimationstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onanimationstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ontransitionrun = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionrun; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ontransitionrun, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ontransitionrun, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ontransitionrun, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ontransitionrun = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ontransitionrun, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ontransitionrun, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionrun = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ontransitionrun, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ontransitionstart = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionstart; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ontransitionstart, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ontransitionstart, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ontransitionstart, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ontransitionstart = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ontransitionstart, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ontransitionstart, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionstart = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ontransitionstart, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ontransitionend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitionend; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ontransitionend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ontransitionend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ontransitionend, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ontransitionend = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ontransitionend, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ontransitionend, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitionend = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ontransitionend, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_ontransitioncancel = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ontransitioncancel; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_ontransitioncancel, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_ontransitioncancel, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_ontransitioncancel, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_ontransitioncancel = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_ontransitioncancel, set object'); break case "function": cbb_wf.console.log('[*] Document_set_ontransitioncancel, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.ontransitioncancel = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_ontransitioncancel, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncopy = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncopy; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncopy, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncopy, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncopy, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncopy = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncopy, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncopy, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncopy = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncopy, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_oncut = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.oncut; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_oncut, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_oncut, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_oncut, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_oncut = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_oncut, set object'); break case "function": cbb_wf.console.log('[*] Document_set_oncut, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.oncut = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_oncut, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_onpaste = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpaste; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpaste, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpaste, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpaste, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpaste = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpaste, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpaste, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpaste = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpaste, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_children = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.children; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_children, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_children, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_children, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_firstElementChild = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.firstElementChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_firstElementChild, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_firstElementChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_firstElementChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_lastElementChild = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lastElementChild; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_lastElementChild, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_lastElementChild, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_lastElementChild, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_childElementCount = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.childElementCount; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_childElementCount, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_childElementCount, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_childElementCount, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_activeElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.activeElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_activeElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_activeElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_activeElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_styleSheets = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.styleSheets; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_styleSheets, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_styleSheets, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_styleSheets, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_pointerLockElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pointerLockElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_pointerLockElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_pointerLockElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_pointerLockElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_fullscreenElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fullscreenElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_fullscreenElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_fullscreenElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_fullscreenElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_fullscreenElement = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_fullscreenElement, set object'); break case "function": cbb_wf.console.log('[*] Document_set_fullscreenElement, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fullscreenElement = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_fullscreenElement, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_adoptedStyleSheets = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.adoptedStyleSheets; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_adoptedStyleSheets, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_adoptedStyleSheets, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_adoptedStyleSheets, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_adoptedStyleSheets = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_adoptedStyleSheets, set object'); break case "function": cbb_wf.console.log('[*] Document_set_adoptedStyleSheets, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.adoptedStyleSheets = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_adoptedStyleSheets, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_fonts = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fonts; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_fonts, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_fonts, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_fonts, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_adoptNode = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.adoptNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_adoptNode, 返回object'); break case "function": cbb_wf.console.log('[*] Document_adoptNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_adoptNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_append = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.append.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_append, 返回object'); break case "function": cbb_wf.console.log('[*] Document_append, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_append, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_captureEvents = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.captureEvents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_captureEvents, 返回object'); break case "function": cbb_wf.console.log('[*] Document_captureEvents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_captureEvents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_caretRangeFromPoint = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.caretRangeFromPoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_caretRangeFromPoint, 返回object'); break case "function": cbb_wf.console.log('[*] Document_caretRangeFromPoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_caretRangeFromPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_clear = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clear.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_clear, 返回object'); break case "function": cbb_wf.console.log('[*] Document_clear, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_close = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.close.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_close, 返回object'); break case "function": cbb_wf.console.log('[*] Document_close, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createAttribute = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createAttribute.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createAttribute, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createAttribute, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createAttribute, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createAttributeNS = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createAttributeNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createAttributeNS, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createAttributeNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createAttributeNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createCDATASection = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createCDATASection.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createCDATASection, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createCDATASection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createCDATASection, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createComment = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createComment.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createComment, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createComment, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createComment, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createDocumentFragment = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createDocumentFragment.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createDocumentFragment, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createDocumentFragment, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createDocumentFragment, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createElementNS = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createElementNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createElementNS, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createElementNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createElementNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createEvent = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createEvent.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createEvent, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createEvent, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createExpression = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createExpression.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createExpression, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createExpression, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createExpression, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createNSResolver = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createNSResolver.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createNSResolver, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createNSResolver, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createNSResolver, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createNodeIterator = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createNodeIterator.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createNodeIterator, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createNodeIterator, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createNodeIterator, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createProcessingInstruction = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createProcessingInstruction.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createProcessingInstruction, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createProcessingInstruction, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createProcessingInstruction, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createRange = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createRange.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createRange, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createRange, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createTextNode = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createTextNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createTextNode, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createTextNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createTextNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_createTreeWalker = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createTreeWalker.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_createTreeWalker, 返回object'); break case "function": cbb_wf.console.log('[*] Document_createTreeWalker, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_createTreeWalker, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_elementFromPoint = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elementFromPoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_elementFromPoint, 返回object'); break case "function": cbb_wf.console.log('[*] Document_elementFromPoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_elementFromPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_elementsFromPoint = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.elementsFromPoint.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_elementsFromPoint, 返回object'); break case "function": cbb_wf.console.log('[*] Document_elementsFromPoint, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_elementsFromPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_evaluate = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.evaluate.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_evaluate, 返回object'); break case "function": cbb_wf.console.log('[*] Document_evaluate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_evaluate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_execCommand = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.execCommand.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_execCommand, 返回object'); break case "function": cbb_wf.console.log('[*] Document_execCommand, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_execCommand, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_exitFullscreen = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.exitFullscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_exitFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] Document_exitFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_exitFullscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_exitPointerLock = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.exitPointerLock.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_exitPointerLock, 返回object'); break case "function": cbb_wf.console.log('[*] Document_exitPointerLock, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_exitPointerLock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getElementById = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementById.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getElementById, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getElementById, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getElementById, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getElementsByClassName = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByClassName.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getElementsByClassName, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getElementsByClassName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getElementsByClassName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getElementsByName = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByName.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getElementsByName, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getElementsByName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getElementsByName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getElementsByTagName = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByTagName.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getElementsByTagName, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getElementsByTagName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getElementsByTagName, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getElementsByTagNameNS = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getElementsByTagNameNS.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getElementsByTagNameNS, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getElementsByTagNameNS, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getElementsByTagNameNS, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getSelection = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getSelection.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getSelection, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getSelection, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getSelection, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_hasFocus = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasFocus.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_hasFocus, 返回object'); break case "function": cbb_wf.console.log('[*] Document_hasFocus, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_hasFocus, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_importNode = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.importNode.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_importNode, 返回object'); break case "function": cbb_wf.console.log('[*] Document_importNode, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_importNode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_open = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.open.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_open, 返回object'); break case "function": cbb_wf.console.log('[*] Document_open, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_prepend = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.prepend.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_prepend, 返回object'); break case "function": cbb_wf.console.log('[*] Document_prepend, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_prepend, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_queryCommandEnabled = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.queryCommandEnabled.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_queryCommandEnabled, 返回object'); break case "function": cbb_wf.console.log('[*] Document_queryCommandEnabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_queryCommandEnabled, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_queryCommandIndeterm = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.queryCommandIndeterm.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_queryCommandIndeterm, 返回object'); break case "function": cbb_wf.console.log('[*] Document_queryCommandIndeterm, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_queryCommandIndeterm, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_queryCommandState = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.queryCommandState.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_queryCommandState, 返回object'); break case "function": cbb_wf.console.log('[*] Document_queryCommandState, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_queryCommandState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_queryCommandSupported = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.queryCommandSupported.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_queryCommandSupported, 返回object'); break case "function": cbb_wf.console.log('[*] Document_queryCommandSupported, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_queryCommandSupported, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_queryCommandValue = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.queryCommandValue.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_queryCommandValue, 返回object'); break case "function": cbb_wf.console.log('[*] Document_queryCommandValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_queryCommandValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_querySelector = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.querySelector.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_querySelector, 返回object'); break case "function": cbb_wf.console.log('[*] Document_querySelector, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_querySelector, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_querySelectorAll = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.querySelectorAll.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_querySelectorAll, 返回object'); break case "function": cbb_wf.console.log('[*] Document_querySelectorAll, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_querySelectorAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_releaseEvents = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.releaseEvents.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_releaseEvents, 返回object'); break case "function": cbb_wf.console.log('[*] Document_releaseEvents, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_releaseEvents, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_replaceChildren = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceChildren.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_replaceChildren, 返回object'); break case "function": cbb_wf.console.log('[*] Document_replaceChildren, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_replaceChildren, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_webkitCancelFullScreen = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitCancelFullScreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_webkitCancelFullScreen, 返回object'); break case "function": cbb_wf.console.log('[*] Document_webkitCancelFullScreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_webkitCancelFullScreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_webkitExitFullscreen = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.webkitExitFullscreen.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_webkitExitFullscreen, 返回object'); break case "function": cbb_wf.console.log('[*] Document_webkitExitFullscreen, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_webkitExitFullscreen, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_write = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.write.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_write, 返回object'); break case "function": cbb_wf.console.log('[*] Document_write, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_write, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_writeln = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.writeln.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_writeln, 返回object'); break case "function": cbb_wf.console.log('[*] Document_writeln, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_writeln, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_get_fragmentDirective = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fragmentDirective; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_fragmentDirective, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_fragmentDirective, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_fragmentDirective, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_onbeforematch = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onbeforematch; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onbeforematch, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onbeforematch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onbeforematch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onbeforematch = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onbeforematch, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onbeforematch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onbeforematch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onbeforematch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_get_timeline = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.timeline; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_timeline, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_timeline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_timeline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_pictureInPictureEnabled = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pictureInPictureEnabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_pictureInPictureEnabled, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_pictureInPictureEnabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_pictureInPictureEnabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_pictureInPictureElement = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.pictureInPictureElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_pictureInPictureElement, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_pictureInPictureElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_pictureInPictureElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_get_onpointerrawupdate = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onpointerrawupdate; switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_get_onpointerrawupdate, 返回object'); break case "function": cbb_wf.console.log('[*] Document_get_onpointerrawupdate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_get_onpointerrawupdate, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Document_set_onpointerrawupdate = function (val) { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Document_set_onpointerrawupdate, set object'); break case "function": cbb_wf.console.log('[*] Document_set_onpointerrawupdate, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onpointerrawupdate = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_set_onpointerrawupdate, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Document_exitPictureInPicture = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.exitPictureInPicture.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_exitPictureInPicture, 返回object'); break case "function": cbb_wf.console.log('[*] Document_exitPictureInPicture, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_exitPictureInPicture, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Document_getAnimations = function () { let r = cbb_wf.checkIllegal(this, "Document"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getAnimations.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] Document_getAnimations, 返回object'); break case "function": cbb_wf.console.log('[*] Document_getAnimations, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Document_getAnimations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DelayNode_get_delayTime = function () { let r = cbb_wf.checkIllegal(this, "DelayNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'delayTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DelayNode_get_delayTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DecompressionStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "DecompressionStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DecompressionStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DecompressionStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "DecompressionStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DecompressionStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransferItemList_get_length = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItemList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItemList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransferItemList_add = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItemList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItemList_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransferItemList_clear = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItemList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItemList_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransferItemList_remove = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItemList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItemList_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransferItem_get_kind = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'kind'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItem_get_kind, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransferItem_get_type = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItem_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransferItem_getAsFile = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItem_getAsFile, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransferItem_getAsString = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItem_getAsString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransferItem_webkitGetAsEntry = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItem_webkitGetAsEntry, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransferItem_getAsFileSystemHandle = function () { let r = cbb_wf.checkIllegal(this, "DataTransferItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransferItem_getAsFileSystemHandle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransfer_get_dropEffect = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dropEffect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_get_dropEffect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransfer_set_dropEffect = function (val) { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'dropEffect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_set_dropEffect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DataTransfer_get_effectAllowed = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'effectAllowed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_get_effectAllowed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransfer_set_effectAllowed = function (val) { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'effectAllowed', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_set_effectAllowed, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DataTransfer_get_items = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'items'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_get_items, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransfer_get_types = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'types'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_get_types, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransfer_get_files = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'files'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_get_files, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DataTransfer_clearData = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_clearData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransfer_getData = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_getData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransfer_setData = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_setData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DataTransfer_setDragImage = function () { let r = cbb_wf.checkIllegal(this, "DataTransfer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DataTransfer_setDragImage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_entries = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.entries.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_entries, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_entries, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_keys = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.keys.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_keys, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_keys, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_values = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.values.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_values, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_values, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_forEach = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.forEach.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_forEach, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_forEach, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_get_length = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DOMTokenList_get_value = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.DOMTokenList_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] DOMTokenList_set_value, set object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.DOMTokenList_add = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.add.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_add, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_add, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_contains = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.contains.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_contains, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_contains, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_contains, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_item = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_item, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_remove = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remove.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_remove, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_remove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_replace = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replace.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_replace, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_replace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_replace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_supports = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.supports.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_supports, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_supports, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_supports, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_toggle = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toggle.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_toggle, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_toggle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_toggle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMTokenList_toString = function () { let r = cbb_wf.checkIllegal(this, "DOMTokenList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.toString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMTokenList_toString, 返回object'); break case "function": cbb_wf.console.log('[*] DOMTokenList_toString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMTokenList_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMStringList_get_length = function () { let r = cbb_wf.checkIllegal(this, "DOMStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMStringList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMStringList_contains = function () { let r = cbb_wf.checkIllegal(this, "DOMStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMStringList_contains, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMStringList_item = function () { let r = cbb_wf.checkIllegal(this, "DOMStringList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMStringList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMRectReadOnly_get_x = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_y = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_width = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_height = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_top = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'top'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_top, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_right = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'right'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_right, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_bottom = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bottom'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_bottom, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_get_left = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'left'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_get_left, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectReadOnly_toJSON = function () { let r = cbb_wf.checkIllegal(this, "DOMRectReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectReadOnly_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMRectList_get_length = function () { let r = cbb_wf.checkIllegal(this, "DOMRectList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRectList_item = function () { let r = cbb_wf.checkIllegal(this, "DOMRectList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRectList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMRect_get_x = function () { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRect_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMRect_get_y = function () { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRect_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMRect_get_width = function () { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRect_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'width', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_set_width, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMRect_get_height = function () { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMRect_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "DOMRect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'height', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMRect_set_height, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMQuad_get_p1 = function () { let r = cbb_wf.checkIllegal(this, "DOMQuad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'p1'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMQuad_get_p1, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMQuad_get_p2 = function () { let r = cbb_wf.checkIllegal(this, "DOMQuad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'p2'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMQuad_get_p2, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMQuad_get_p3 = function () { let r = cbb_wf.checkIllegal(this, "DOMQuad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'p3'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMQuad_get_p3, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMQuad_get_p4 = function () { let r = cbb_wf.checkIllegal(this, "DOMQuad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'p4'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMQuad_get_p4, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMQuad_getBounds = function () { let r = cbb_wf.checkIllegal(this, "DOMQuad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMQuad_getBounds, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMQuad_toJSON = function () { let r = cbb_wf.checkIllegal(this, "DOMQuad"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMQuad_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMPointReadOnly_get_x = function () { let r = cbb_wf.checkIllegal(this, "DOMPointReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPointReadOnly_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPointReadOnly_get_y = function () { let r = cbb_wf.checkIllegal(this, "DOMPointReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPointReadOnly_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPointReadOnly_get_z = function () { let r = cbb_wf.checkIllegal(this, "DOMPointReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPointReadOnly_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPointReadOnly_get_w = function () { let r = cbb_wf.checkIllegal(this, "DOMPointReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'w'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPointReadOnly_get_w, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPointReadOnly_matrixTransform = function () { let r = cbb_wf.checkIllegal(this, "DOMPointReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPointReadOnly_matrixTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMPointReadOnly_toJSON = function () { let r = cbb_wf.checkIllegal(this, "DOMPointReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPointReadOnly_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMPoint_get_x = function () { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPoint_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMPoint_get_y = function () { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPoint_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMPoint_get_z = function () { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPoint_set_z = function (val) { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'z', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_set_z, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMPoint_get_w = function () { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'w'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_get_w, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMPoint_set_w = function (val) { let r = cbb_wf.checkIllegal(this, "DOMPoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'w', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMPoint_set_w, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMParser_parseFromString = function () { let r = cbb_wf.checkIllegal(this, "DOMParser"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parseFromString.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMParser_parseFromString, 返回object'); break case "function": cbb_wf.console.log('[*] DOMParser_parseFromString, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMParser_parseFromString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_get_a = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'a'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_a, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_b = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'b'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_b, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_c = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'c'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_c, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_d = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_d, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_e = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'e'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_e, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_f = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'f'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_f, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m11 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm11'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m11, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m12 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm12'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m12, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m13 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm13'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m13, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m14 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm14'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m14, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m21 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm21'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m21, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m22 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm22'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m22, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m23 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm23'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m23, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m24 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm24'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m24, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m31 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm31'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m31, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m32 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm32'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m32, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m33 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm33'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m33, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m34 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm34'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m34, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m41 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm41'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m41, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m42 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm42'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m42, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m43 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm43'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m43, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_m44 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm44'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_m44, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_is2D = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'is2D'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_is2D, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_get_isIdentity = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isIdentity'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_get_isIdentity, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrixReadOnly_flipX = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_flipX, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_flipY = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_flipY, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_inverse = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_inverse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_multiply = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_multiply, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_rotate = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_rotate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_rotateAxisAngle = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_rotateAxisAngle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_rotateFromVector = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_rotateFromVector, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_scale = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_scale, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_scale3d = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_scale3d, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_scaleNonUniform = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_scaleNonUniform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_skewX = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_skewX, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_skewY = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_skewY, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_toFloat32Array = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_toFloat32Array, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_toFloat64Array = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_toFloat64Array, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_toJSON = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_transformPoint = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_transformPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_translate = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_translate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrixReadOnly_toString = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrixReadOnly"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrixReadOnly_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_get_a = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'a'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_a, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_a = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'a', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_a, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_b = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'b'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_b, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_b = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'b', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_b, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_c = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'c'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_c, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_c = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'c', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_c, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_d = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_d, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_d = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_d, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_e = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'e'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_e, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_e = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'e', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_e, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_f = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'f'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_f, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_f = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'f', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_f, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m11 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm11'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m11, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m11 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm11', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m11, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m12 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm12'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m12, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m12 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm12', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m12, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m13 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm13'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m13, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m13 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm13', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m13, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m14 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm14'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m14, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m14 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm14', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m14, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m21 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm21'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m21, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m21 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm21', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m21, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m22 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm22'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m22, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m22 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm22', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m22, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m23 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm23'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m23, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m23 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm23', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m23, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m24 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm24'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m24, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m24 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm24', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m24, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m31 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm31'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m31, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m31 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm31', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m31, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m32 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm32'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m32, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m32 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm32', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m32, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m33 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm33'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m33, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m33 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm33', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m33, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m34 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm34'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m34, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m34 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm34', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m34, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m41 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm41'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m41, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m41 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm41', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m41, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m42 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm42'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m42, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m42 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm42', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m42, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m43 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm43'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m43, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m43 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm43', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m43, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_get_m44 = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'm44'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_get_m44, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMMatrix_set_m44 = function (val) { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'm44', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_set_m44, this =>", toString.call(this), ", val => ", '' + val, info); } } this.DOMMatrix_invertSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_invertSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_multiplySelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_multiplySelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_preMultiplySelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_preMultiplySelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_rotateAxisAngleSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_rotateAxisAngleSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_rotateFromVectorSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_rotateFromVectorSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_rotateSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_rotateSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_scale3dSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_scale3dSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_scaleSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_scaleSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_skewXSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_skewXSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_skewYSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_skewYSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_translateSelf = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_translateSelf, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMMatrix_setMatrixValue = function () { let r = cbb_wf.checkIllegal(this, "DOMMatrix"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMMatrix_setMatrixValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMImplementation_createDocument = function () { let r = cbb_wf.checkIllegal(this, "DOMImplementation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createDocument.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMImplementation_createDocument, 返回object'); break case "function": cbb_wf.console.log('[*] DOMImplementation_createDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMImplementation_createDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMImplementation_createDocumentType = function () { let r = cbb_wf.checkIllegal(this, "DOMImplementation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createDocumentType.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMImplementation_createDocumentType, 返回object'); break case "function": cbb_wf.console.log('[*] DOMImplementation_createDocumentType, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMImplementation_createDocumentType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMImplementation_createHTMLDocument = function () { let r = cbb_wf.checkIllegal(this, "DOMImplementation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createHTMLDocument.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMImplementation_createHTMLDocument, 返回object'); break case "function": cbb_wf.console.log('[*] DOMImplementation_createHTMLDocument, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMImplementation_createHTMLDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMImplementation_hasFeature = function () { let r = cbb_wf.checkIllegal(this, "DOMImplementation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.hasFeature.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] DOMImplementation_hasFeature, 返回object'); break case "function": cbb_wf.console.log('[*] DOMImplementation_hasFeature, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMImplementation_hasFeature, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DOMException_get_code = function () { let r = cbb_wf.checkIllegal(this, "DOMException"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMException_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMException_get_name = function () { let r = cbb_wf.checkIllegal(this, "DOMException"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMException_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMException_get_message = function () { let r = cbb_wf.checkIllegal(this, "DOMException"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMException_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMError_get_name = function () { let r = cbb_wf.checkIllegal(this, "DOMError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMError_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DOMError_get_message = function () { let r = cbb_wf.checkIllegal(this, "DOMError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DOMError_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CustomEvent_get_detail = function () { let r = cbb_wf.checkIllegal(this, "CustomEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detail'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomEvent_get_detail, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CustomEvent_initCustomEvent = function () { let r = cbb_wf.checkIllegal(this, "CustomEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomEvent_initCustomEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomElementRegistry_define = function () { let r = cbb_wf.checkIllegal(this, "CustomElementRegistry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.define.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CustomElementRegistry_define, 返回object'); break case "function": cbb_wf.console.log('[*] CustomElementRegistry_define, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomElementRegistry_define, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomElementRegistry_get = function () { let r = cbb_wf.checkIllegal(this, "CustomElementRegistry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.get.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CustomElementRegistry_get, 返回object'); break case "function": cbb_wf.console.log('[*] CustomElementRegistry_get, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomElementRegistry_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomElementRegistry_upgrade = function () { let r = cbb_wf.checkIllegal(this, "CustomElementRegistry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.upgrade.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CustomElementRegistry_upgrade, 返回object'); break case "function": cbb_wf.console.log('[*] CustomElementRegistry_upgrade, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomElementRegistry_upgrade, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomElementRegistry_whenDefined = function () { let r = cbb_wf.checkIllegal(this, "CustomElementRegistry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.whenDefined.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CustomElementRegistry_whenDefined, 返回object'); break case "function": cbb_wf.console.log('[*] CustomElementRegistry_whenDefined, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomElementRegistry_whenDefined, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Crypto_getRandomValues = function () { let r = cbb_wf.checkIllegal(this, "Crypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Crypto_getRandomValues, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Crypto_get_subtle = function () { let r = cbb_wf.checkIllegal(this, "Crypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'subtle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Crypto_get_subtle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Crypto_randomUUID = function () { let r = cbb_wf.checkIllegal(this, "Crypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Crypto_randomUUID, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CountQueuingStrategy_get_highWaterMark = function () { let r = cbb_wf.checkIllegal(this, "CountQueuingStrategy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'highWaterMark'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CountQueuingStrategy_get_highWaterMark, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CountQueuingStrategy_get_size = function () { let r = cbb_wf.checkIllegal(this, "CountQueuingStrategy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CountQueuingStrategy_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ConvolverNode_get_buffer = function () { let r = cbb_wf.checkIllegal(this, "ConvolverNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'buffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ConvolverNode_get_buffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ConvolverNode_set_buffer = function (val) { let r = cbb_wf.checkIllegal(this, "ConvolverNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'buffer', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ConvolverNode_set_buffer, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ConvolverNode_get_normalize = function () { let r = cbb_wf.checkIllegal(this, "ConvolverNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'normalize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ConvolverNode_get_normalize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ConvolverNode_set_normalize = function (val) { let r = cbb_wf.checkIllegal(this, "ConvolverNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'normalize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ConvolverNode_set_normalize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ConstantSourceNode_get_offset = function () { let r = cbb_wf.checkIllegal(this, "ConstantSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offset'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ConstantSourceNode_get_offset, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CompressionStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "CompressionStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CompressionStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CompressionStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "CompressionStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CompressionStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CompositionEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "CompositionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CompositionEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CompositionEvent_initCompositionEvent = function () { let r = cbb_wf.checkIllegal(this, "CompositionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CompositionEvent_initCompositionEvent, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CloseEvent_get_wasClean = function () { let r = cbb_wf.checkIllegal(this, "CloseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'wasClean'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CloseEvent_get_wasClean, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CloseEvent_get_code = function () { let r = cbb_wf.checkIllegal(this, "CloseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CloseEvent_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CloseEvent_get_reason = function () { let r = cbb_wf.checkIllegal(this, "CloseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reason'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CloseEvent_get_reason, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ClipboardEvent_get_clipboardData = function () { let r = cbb_wf.checkIllegal(this, "ClipboardEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clipboardData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ClipboardEvent_get_clipboardData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CharacterData_get_data = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.data; switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_get_data, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_get_data, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_get_data, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CharacterData_set_data = function (val) { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CharacterData_set_data, set object'); break case "function": cbb_wf.console.log('[*] CharacterData_set_data, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.data = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_set_data, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CharacterData_get_length = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CharacterData_get_previousElementSibling = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.previousElementSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_get_previousElementSibling, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_get_previousElementSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_get_previousElementSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CharacterData_get_nextElementSibling = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.nextElementSibling; switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_get_nextElementSibling, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_get_nextElementSibling, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_get_nextElementSibling, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CharacterData_after = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.after.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_after, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_after, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_after, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_appendData = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.appendData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_appendData, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_appendData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_appendData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_before = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.before.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_before, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_before, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_before, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_deleteData = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_deleteData, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_deleteData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_deleteData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_insertData = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_insertData, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_insertData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_insertData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_remove = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.remove.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_remove, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_remove, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_replaceData = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_replaceData, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_replaceData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_replaceData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_replaceWith = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceWith.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_replaceWith, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_replaceWith, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_replaceWith, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterData_substringData = function () { let r = cbb_wf.checkIllegal(this, "CharacterData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.substringData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CharacterData_substringData, 返回object'); break case "function": cbb_wf.console.log('[*] CharacterData_substringData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CharacterData_substringData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_get_canvas = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.canvas; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_canvas, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_canvas, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_canvas, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_get_globalAlpha = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.globalAlpha; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_globalAlpha, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_globalAlpha, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_globalAlpha, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_globalAlpha = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_globalAlpha, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_globalAlpha, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.globalAlpha = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_globalAlpha, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_globalCompositeOperation = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.globalCompositeOperation; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_globalCompositeOperation, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_globalCompositeOperation, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_globalCompositeOperation, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_globalCompositeOperation = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_globalCompositeOperation, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_globalCompositeOperation, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.globalCompositeOperation = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_globalCompositeOperation, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_filter = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.filter; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_filter, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_filter, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_filter, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_filter = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_filter, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_filter, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.filter = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_filter, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_imageSmoothingEnabled = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.imageSmoothingEnabled; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_imageSmoothingEnabled, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_imageSmoothingEnabled, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_imageSmoothingEnabled, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_imageSmoothingEnabled = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_imageSmoothingEnabled, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_imageSmoothingEnabled, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.imageSmoothingEnabled = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_imageSmoothingEnabled, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_imageSmoothingQuality = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.imageSmoothingQuality; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_imageSmoothingQuality, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_imageSmoothingQuality, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_imageSmoothingQuality, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_imageSmoothingQuality = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_imageSmoothingQuality, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_imageSmoothingQuality, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.imageSmoothingQuality = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_imageSmoothingQuality, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_strokeStyle = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.strokeStyle; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_strokeStyle, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_strokeStyle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_strokeStyle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_strokeStyle = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_strokeStyle, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_strokeStyle, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.strokeStyle = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_strokeStyle, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_fillStyle = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fillStyle; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fillStyle, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fillStyle, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_fillStyle, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_fillStyle = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fillStyle, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fillStyle, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fillStyle = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_fillStyle, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_shadowOffsetX = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shadowOffsetX; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowOffsetX, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowOffsetX, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_shadowOffsetX, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_shadowOffsetX = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowOffsetX, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowOffsetX, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.shadowOffsetX = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_shadowOffsetX, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_shadowOffsetY = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shadowOffsetY; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowOffsetY, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowOffsetY, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_shadowOffsetY, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_shadowOffsetY = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowOffsetY, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowOffsetY, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.shadowOffsetY = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_shadowOffsetY, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_shadowBlur = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shadowBlur; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowBlur, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowBlur, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_shadowBlur, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_shadowBlur = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowBlur, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowBlur, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.shadowBlur = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_shadowBlur, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_shadowColor = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.shadowColor; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowColor, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_shadowColor, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_shadowColor, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_shadowColor = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowColor, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_shadowColor, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.shadowColor = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_shadowColor, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_lineWidth = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lineWidth; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineWidth, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineWidth, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_lineWidth, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_lineWidth = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineWidth, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineWidth, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.lineWidth = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_lineWidth, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_lineCap = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lineCap; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineCap, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineCap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_lineCap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_lineCap = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineCap, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineCap, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.lineCap = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_lineCap, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_lineJoin = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lineJoin; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineJoin, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineJoin, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_lineJoin, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_lineJoin = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineJoin, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineJoin, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.lineJoin = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_lineJoin, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_miterLimit = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.miterLimit; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_miterLimit, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_miterLimit, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_miterLimit, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_miterLimit = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_miterLimit, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_miterLimit, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.miterLimit = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_miterLimit, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_lineDashOffset = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lineDashOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineDashOffset, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_lineDashOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_lineDashOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_lineDashOffset = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineDashOffset, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_lineDashOffset, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.lineDashOffset = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_lineDashOffset, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_font = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.font; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_font, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_font, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_font, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_font = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_font, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_font, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.font = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_font, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_textAlign = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textAlign; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_textAlign, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_textAlign, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_textAlign, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_textAlign = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_textAlign, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_textAlign, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.textAlign = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_textAlign, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_textBaseline = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textBaseline; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_textBaseline, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_textBaseline, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_textBaseline, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_textBaseline = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_textBaseline, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_textBaseline, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.textBaseline = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_textBaseline, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_direction = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.direction; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_direction, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_direction, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_direction, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_direction = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_direction, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_direction, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.direction = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_direction, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_fontKerning = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fontKerning; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fontKerning, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fontKerning, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_fontKerning, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_fontKerning = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fontKerning, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fontKerning, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fontKerning = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_fontKerning, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_fontStretch = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fontStretch; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fontStretch, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fontStretch, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_fontStretch, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_fontStretch = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fontStretch, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fontStretch, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fontStretch = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_fontStretch, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_fontVariantCaps = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fontVariantCaps; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fontVariantCaps, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_fontVariantCaps, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_fontVariantCaps, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_fontVariantCaps = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fontVariantCaps, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_fontVariantCaps, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.fontVariantCaps = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_fontVariantCaps, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_letterSpacing = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.letterSpacing; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_letterSpacing, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_letterSpacing, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_letterSpacing, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_letterSpacing = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_letterSpacing, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_letterSpacing, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.letterSpacing = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_letterSpacing, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_textRendering = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.textRendering; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_textRendering, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_textRendering, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_textRendering, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_textRendering = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_textRendering, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_textRendering, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.textRendering = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_textRendering, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_get_wordSpacing = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.wordSpacing; switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_wordSpacing, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_get_wordSpacing, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_get_wordSpacing, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CanvasRenderingContext2D_set_wordSpacing = function (val) { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_wordSpacing, set object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_set_wordSpacing, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.wordSpacing = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_set_wordSpacing, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CanvasRenderingContext2D_clip = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clip.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_clip, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_clip, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_clip, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_createConicGradient = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createConicGradient.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_createConicGradient, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_createConicGradient, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_createConicGradient, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_createImageData = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createImageData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_createImageData, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_createImageData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_createImageData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_createLinearGradient = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createLinearGradient.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_createLinearGradient, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_createLinearGradient, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_createLinearGradient, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_createPattern = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createPattern.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_createPattern, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_createPattern, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_createPattern, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_createRadialGradient = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.createRadialGradient.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_createRadialGradient, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_createRadialGradient, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_createRadialGradient, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_drawFocusIfNeeded = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.drawFocusIfNeeded.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_drawFocusIfNeeded, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_drawFocusIfNeeded, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_drawFocusIfNeeded, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_drawImage = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.drawImage.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_drawImage, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_drawImage, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_drawImage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_fill = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fill.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_fill, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_fill, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_fill, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_fillText = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fillText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_fillText, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_fillText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_fillText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_getContextAttributes = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getContextAttributes.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_getContextAttributes, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_getContextAttributes, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_getContextAttributes, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_getImageData = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getImageData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_getImageData, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_getImageData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_getImageData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_getLineDash = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getLineDash.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_getLineDash, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_getLineDash, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_getLineDash, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_getTransform = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getTransform.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_getTransform, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_getTransform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_getTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_isContextLost = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isContextLost.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_isContextLost, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_isContextLost, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_isContextLost, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_isPointInPath = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isPointInPath.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_isPointInPath, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_isPointInPath, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_isPointInPath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_isPointInStroke = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.isPointInStroke.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_isPointInStroke, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_isPointInStroke, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_isPointInStroke, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_measureText = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.measureText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_measureText, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_measureText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_measureText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_putImageData = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.putImageData.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_putImageData, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_putImageData, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_putImageData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_reset = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reset.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_reset, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_reset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_roundRect = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.roundRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_roundRect, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_roundRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_roundRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_save = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.save.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_save, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_save, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_save, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_scale = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.scale.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_scale, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_scale, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_scale, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_setLineDash = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setLineDash.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_setLineDash, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_setLineDash, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_setLineDash, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_setTransform = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setTransform.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_setTransform, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_setTransform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_setTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_stroke = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.stroke.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_stroke, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_stroke, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_stroke, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_strokeText = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.strokeText.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_strokeText, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_strokeText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_strokeText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_transform = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.transform.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_transform, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_transform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_transform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_translate = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.translate.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_translate, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_translate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_translate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_arc = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.arc.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_arc, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_arc, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_arc, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_arcTo = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.arcTo.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_arcTo, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_arcTo, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_arcTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_beginPath = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.beginPath.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_beginPath, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_beginPath, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_beginPath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_bezierCurveTo = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.bezierCurveTo.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_bezierCurveTo, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_bezierCurveTo, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_bezierCurveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_clearRect = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.clearRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_clearRect, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_clearRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_clearRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_closePath = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.closePath.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_closePath, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_closePath, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_closePath, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_ellipse = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ellipse.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_ellipse, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_ellipse, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_ellipse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_fillRect = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.fillRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_fillRect, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_fillRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_fillRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_lineTo = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.lineTo.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_lineTo, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_lineTo, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_lineTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_moveTo = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.moveTo.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_moveTo, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_moveTo, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_moveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_quadraticCurveTo = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.quadraticCurveTo.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_quadraticCurveTo, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_quadraticCurveTo, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_quadraticCurveTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_rect = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_rect, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_rect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_rect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_resetTransform = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.resetTransform.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_resetTransform, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_resetTransform, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_resetTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_restore = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.restore.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_restore, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_restore, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_restore, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_rotate = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rotate.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_rotate, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_rotate, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_rotate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasRenderingContext2D_strokeRect = function () { let r = cbb_wf.checkIllegal(this, "CanvasRenderingContext2D"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.strokeRect.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasRenderingContext2D_strokeRect, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasRenderingContext2D_strokeRect, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasRenderingContext2D_strokeRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasPattern_setTransform = function () { let r = cbb_wf.checkIllegal(this, "CanvasPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasPattern_setTransform, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasGradient_addColorStop = function () { let r = cbb_wf.checkIllegal(this, "CanvasGradient"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.addColorStop.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CanvasGradient_addColorStop, 返回object'); break case "function": cbb_wf.console.log('[*] CanvasGradient_addColorStop, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasGradient_addColorStop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CanvasCaptureMediaStreamTrack_get_canvas = function () { let r = cbb_wf.checkIllegal(this, "CanvasCaptureMediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canvas'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasCaptureMediaStreamTrack_get_canvas, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CanvasCaptureMediaStreamTrack_requestFrame = function () { let r = cbb_wf.checkIllegal(this, "CanvasCaptureMediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CanvasCaptureMediaStreamTrack_requestFrame, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSVariableReferenceValue_get_variable = function () { let r = cbb_wf.checkIllegal(this, "CSSVariableReferenceValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'variable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSVariableReferenceValue_get_variable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSVariableReferenceValue_set_variable = function (val) { let r = cbb_wf.checkIllegal(this, "CSSVariableReferenceValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'variable', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSVariableReferenceValue_set_variable, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSVariableReferenceValue_get_fallback = function () { let r = cbb_wf.checkIllegal(this, "CSSVariableReferenceValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fallback'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSVariableReferenceValue_get_fallback, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSUnparsedValue_entries = function () { let r = cbb_wf.checkIllegal(this, "CSSUnparsedValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnparsedValue_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSUnparsedValue_keys = function () { let r = cbb_wf.checkIllegal(this, "CSSUnparsedValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnparsedValue_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSUnparsedValue_values = function () { let r = cbb_wf.checkIllegal(this, "CSSUnparsedValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnparsedValue_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSUnparsedValue_forEach = function () { let r = cbb_wf.checkIllegal(this, "CSSUnparsedValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnparsedValue_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSUnparsedValue_get_length = function () { let r = cbb_wf.checkIllegal(this, "CSSUnparsedValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnparsedValue_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSUnitValue_get_value = function () { let r = cbb_wf.checkIllegal(this, "CSSUnitValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnitValue_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSUnitValue_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "CSSUnitValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'value', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnitValue_set_value, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSUnitValue_get_unit = function () { let r = cbb_wf.checkIllegal(this, "CSSUnitValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'unit'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSUnitValue_get_unit, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTranslate_get_x = function () { let r = cbb_wf.checkIllegal(this, "CSSTranslate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTranslate_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTranslate_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "CSSTranslate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTranslate_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSTranslate_get_y = function () { let r = cbb_wf.checkIllegal(this, "CSSTranslate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTranslate_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTranslate_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "CSSTranslate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTranslate_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSTranslate_get_z = function () { let r = cbb_wf.checkIllegal(this, "CSSTranslate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTranslate_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTranslate_set_z = function (val) { let r = cbb_wf.checkIllegal(this, "CSSTranslate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'z', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTranslate_set_z, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSTransformValue_entries = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSTransformValue_keys = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSTransformValue_values = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSTransformValue_forEach = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSTransformValue_get_length = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTransformValue_get_is2D = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'is2D'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_get_is2D, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTransformValue_toMatrix = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformValue_toMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSTransformComponent_get_is2D = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformComponent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'is2D'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformComponent_get_is2D, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTransformComponent_set_is2D = function (val) { let r = cbb_wf.checkIllegal(this, "CSSTransformComponent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'is2D', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformComponent_set_is2D, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSTransformComponent_toMatrix = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformComponent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformComponent_toMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSTransformComponent_toString = function () { let r = cbb_wf.checkIllegal(this, "CSSTransformComponent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransformComponent_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleValue_toString = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleValue_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleSheet_get_ownerRule = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ownerRule; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_get_ownerRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_get_ownerRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_get_ownerRule, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleSheet_get_cssRules = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cssRules; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_get_cssRules, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_get_cssRules, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_get_cssRules, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleSheet_get_rules = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.rules; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_get_rules, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_get_rules, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_get_rules, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleSheet_addRule = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.addRule.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_addRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_addRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_addRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleSheet_deleteRule = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.deleteRule.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_deleteRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_deleteRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_deleteRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleSheet_insertRule = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.insertRule.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_insertRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_insertRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_insertRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleSheet_removeRule = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeRule.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_removeRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_removeRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_removeRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleSheet_replace = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replace.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_replace, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_replace, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_replace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleSheet_replaceSync = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleSheet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.replaceSync.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleSheet_replaceSync, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleSheet_replaceSync, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleSheet_replaceSync, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleRule_get_selectorText = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.selectorText; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleRule_get_selectorText, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleRule_get_selectorText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleRule_get_selectorText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleRule_set_selectorText = function (val) { let r = cbb_wf.checkIllegal(this, "CSSStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSStyleRule_set_selectorText, set object'); break case "function": cbb_wf.console.log('[*] CSSStyleRule_set_selectorText, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.selectorText = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleRule_set_selectorText, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSStyleRule_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.style; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleRule_get_style, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleRule_get_style, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleRule_get_style, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleRule_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "CSSStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSStyleRule_set_style, set object'); break case "function": cbb_wf.console.log('[*] CSSStyleRule_set_style, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.style = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleRule_set_style, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSStyleRule_get_styleMap = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.styleMap; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleRule_get_styleMap, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleRule_get_styleMap, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleRule_get_styleMap, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleDeclaration_get_cssText = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cssText; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_get_cssText, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_get_cssText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_get_cssText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleDeclaration_set_cssText = function (val) { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_set_cssText, set object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_set_cssText, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cssText = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_set_cssText, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSStyleDeclaration_get_length = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.length; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_get_length, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_get_length, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_get_length, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleDeclaration_get_parentRule = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentRule; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_get_parentRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_get_parentRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_get_parentRule, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleDeclaration_get_cssFloat = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cssFloat; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_get_cssFloat, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_get_cssFloat, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_get_cssFloat, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSStyleDeclaration_set_cssFloat = function (val) { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_set_cssFloat, set object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_set_cssFloat, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cssFloat = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_set_cssFloat, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSStyleDeclaration_getPropertyPriority = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getPropertyPriority.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_getPropertyPriority, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_getPropertyPriority, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_getPropertyPriority, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleDeclaration_getPropertyValue = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.getPropertyValue.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_getPropertyValue, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_getPropertyValue, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_getPropertyValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleDeclaration_item = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.item.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_item, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_item, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleDeclaration_removeProperty = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.removeProperty.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_removeProperty, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_removeProperty, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_removeProperty, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSStyleDeclaration_setProperty = function () { let r = cbb_wf.checkIllegal(this, "CSSStyleDeclaration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.setProperty.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSStyleDeclaration_setProperty, 返回object'); break case "function": cbb_wf.console.log('[*] CSSStyleDeclaration_setProperty, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSStyleDeclaration_setProperty, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSSkewY_get_ay = function () { let r = cbb_wf.checkIllegal(this, "CSSSkewY"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ay'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkewY_get_ay, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSSkewY_set_ay = function (val) { let r = cbb_wf.checkIllegal(this, "CSSSkewY"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ay', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkewY_set_ay, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSSkewX_get_ax = function () { let r = cbb_wf.checkIllegal(this, "CSSSkewX"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ax'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkewX_get_ax, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSSkewX_set_ax = function (val) { let r = cbb_wf.checkIllegal(this, "CSSSkewX"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ax', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkewX_set_ax, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSSkew_get_ax = function () { let r = cbb_wf.checkIllegal(this, "CSSSkew"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ax'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkew_get_ax, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSSkew_set_ax = function (val) { let r = cbb_wf.checkIllegal(this, "CSSSkew"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ax', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkew_set_ax, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSSkew_get_ay = function () { let r = cbb_wf.checkIllegal(this, "CSSSkew"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ay'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkew_get_ay, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSSkew_set_ay = function (val) { let r = cbb_wf.checkIllegal(this, "CSSSkew"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ay', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSSkew_set_ay, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSScale_get_x = function () { let r = cbb_wf.checkIllegal(this, "CSSScale"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSScale_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSScale_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "CSSScale"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSScale_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSScale_get_y = function () { let r = cbb_wf.checkIllegal(this, "CSSScale"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSScale_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSScale_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "CSSScale"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSScale_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSScale_get_z = function () { let r = cbb_wf.checkIllegal(this, "CSSScale"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSScale_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSScale_set_z = function (val) { let r = cbb_wf.checkIllegal(this, "CSSScale"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'z', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSScale_set_z, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSRuleList_get_length = function () { let r = cbb_wf.checkIllegal(this, "CSSRuleList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRuleList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSRuleList_item = function () { let r = cbb_wf.checkIllegal(this, "CSSRuleList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRuleList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSRule_get_type = function () { let r = cbb_wf.checkIllegal(this, "CSSRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.type; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSRule_get_type, 返回object'); break case "function": cbb_wf.console.log('[*] CSSRule_get_type, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRule_get_type, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSRule_get_cssText = function () { let r = cbb_wf.checkIllegal(this, "CSSRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.cssText; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSRule_get_cssText, 返回object'); break case "function": cbb_wf.console.log('[*] CSSRule_get_cssText, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRule_get_cssText, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSRule_set_cssText = function (val) { let r = cbb_wf.checkIllegal(this, "CSSRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSRule_set_cssText, set object'); break case "function": cbb_wf.console.log('[*] CSSRule_set_cssText, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.cssText = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRule_set_cssText, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSRule_get_parentRule = function () { let r = cbb_wf.checkIllegal(this, "CSSRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentRule; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSRule_get_parentRule, 返回object'); break case "function": cbb_wf.console.log('[*] CSSRule_get_parentRule, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRule_get_parentRule, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSRule_get_parentStyleSheet = function () { let r = cbb_wf.checkIllegal(this, "CSSRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.parentStyleSheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSRule_get_parentStyleSheet, 返回object'); break case "function": cbb_wf.console.log('[*] CSSRule_get_parentStyleSheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRule_get_parentStyleSheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSRotate_get_angle = function () { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'angle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_get_angle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSRotate_set_angle = function (val) { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'angle', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_set_angle, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSRotate_get_x = function () { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSRotate_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSRotate_get_y = function () { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSRotate_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSRotate_get_z = function () { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSRotate_set_z = function (val) { let r = cbb_wf.checkIllegal(this, "CSSRotate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'z', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSRotate_set_z, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPropertyRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSPropertyRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPropertyRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPropertyRule_get_syntax = function () { let r = cbb_wf.checkIllegal(this, "CSSPropertyRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'syntax'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPropertyRule_get_syntax, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPropertyRule_get_inherits = function () { let r = cbb_wf.checkIllegal(this, "CSSPropertyRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inherits'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPropertyRule_get_inherits, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPropertyRule_get_initialValue = function () { let r = cbb_wf.checkIllegal(this, "CSSPropertyRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'initialValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPropertyRule_get_initialValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionValue_get_x = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPositionValue_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionValue_set_x = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'x', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPositionValue_set_x, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionValue_get_y = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPositionValue_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionValue_set_y = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'y', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPositionValue_set_y, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPerspective_get_length = function () { let r = cbb_wf.checkIllegal(this, "CSSPerspective"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPerspective_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPerspective_set_length = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPerspective"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'length', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPerspective_set_length, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPageRule_get_selectorText = function () { let r = cbb_wf.checkIllegal(this, "CSSPageRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectorText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPageRule_get_selectorText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPageRule_set_selectorText = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPageRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'selectorText', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPageRule_set_selectorText, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPageRule_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSPageRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPageRule_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPageRule_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPageRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'style', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSPageRule_set_style, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSNumericValue_add = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_div = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_div, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_equals = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_equals, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_max = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_max, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_min = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_min, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_mul = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_mul, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_sub = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_sub, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_to = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_to, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_toSum = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_toSum, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericValue_type = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericValue_type, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericArray_entries = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericArray_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericArray_keys = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericArray_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericArray_values = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericArray_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericArray_forEach = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericArray_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSNumericArray_get_length = function () { let r = cbb_wf.checkIllegal(this, "CSSNumericArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNumericArray_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSNamespaceRule_get_namespaceURI = function () { let r = cbb_wf.checkIllegal(this, "CSSNamespaceRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'namespaceURI'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNamespaceRule_get_namespaceURI, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSNamespaceRule_get_prefix = function () { let r = cbb_wf.checkIllegal(this, "CSSNamespaceRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'prefix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSNamespaceRule_get_prefix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMediaRule_get_media = function () { let r = cbb_wf.checkIllegal(this, "CSSMediaRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSMediaRule_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] CSSMediaRule_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMediaRule_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSMediaRule_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "CSSMediaRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSMediaRule_set_media, set object'); break case "function": cbb_wf.console.log('[*] CSSMediaRule_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMediaRule_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSMatrixComponent_get_matrix = function () { let r = cbb_wf.checkIllegal(this, "CSSMatrixComponent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matrix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMatrixComponent_get_matrix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMatrixComponent_set_matrix = function (val) { let r = cbb_wf.checkIllegal(this, "CSSMatrixComponent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'matrix', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMatrixComponent_set_matrix, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSMathValue_get_operator = function () { let r = cbb_wf.checkIllegal(this, "CSSMathValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'operator'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathValue_get_operator, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathSum_get_values = function () { let r = cbb_wf.checkIllegal(this, "CSSMathSum"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'values'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathSum_get_values, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathProduct_get_values = function () { let r = cbb_wf.checkIllegal(this, "CSSMathProduct"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'values'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathProduct_get_values, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathNegate_get_value = function () { let r = cbb_wf.checkIllegal(this, "CSSMathNegate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathNegate_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathMin_get_values = function () { let r = cbb_wf.checkIllegal(this, "CSSMathMin"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'values'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathMin_get_values, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathMax_get_values = function () { let r = cbb_wf.checkIllegal(this, "CSSMathMax"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'values'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathMax_get_values, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathInvert_get_value = function () { let r = cbb_wf.checkIllegal(this, "CSSMathInvert"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathInvert_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathClamp_get_lower = function () { let r = cbb_wf.checkIllegal(this, "CSSMathClamp"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lower'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathClamp_get_lower, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathClamp_get_value = function () { let r = cbb_wf.checkIllegal(this, "CSSMathClamp"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathClamp_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMathClamp_get_upper = function () { let r = cbb_wf.checkIllegal(this, "CSSMathClamp"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upper'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSMathClamp_get_upper, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSLayerStatementRule_get_nameList = function () { let r = cbb_wf.checkIllegal(this, "CSSLayerStatementRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'nameList'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSLayerStatementRule_get_nameList, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSLayerBlockRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSLayerBlockRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSLayerBlockRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSKeywordValue_get_value = function () { let r = cbb_wf.checkIllegal(this, "CSSKeywordValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeywordValue_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSKeywordValue_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "CSSKeywordValue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'value', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeywordValue_set_value, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSKeyframesRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframesRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSKeyframesRule_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "CSSKeyframesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'name', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframesRule_set_name, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSKeyframesRule_get_cssRules = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cssRules'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframesRule_get_cssRules, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSKeyframesRule_appendRule = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframesRule_appendRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSKeyframesRule_deleteRule = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframesRule_deleteRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSKeyframesRule_findRule = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframesRule_findRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSKeyframeRule_get_keyText = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframeRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keyText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframeRule_get_keyText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSKeyframeRule_set_keyText = function (val) { let r = cbb_wf.checkIllegal(this, "CSSKeyframeRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'keyText', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframeRule_set_keyText, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSKeyframeRule_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSKeyframeRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframeRule_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSKeyframeRule_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "CSSKeyframeRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'style', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSKeyframeRule_set_style, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSImportRule_get_href = function () { let r = cbb_wf.checkIllegal(this, "CSSImportRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.href; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSImportRule_get_href, 返回object'); break case "function": cbb_wf.console.log('[*] CSSImportRule_get_href, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSImportRule_get_href, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSImportRule_get_media = function () { let r = cbb_wf.checkIllegal(this, "CSSImportRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.media; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSImportRule_get_media, 返回object'); break case "function": cbb_wf.console.log('[*] CSSImportRule_get_media, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSImportRule_get_media, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSImportRule_set_media = function (val) { let r = cbb_wf.checkIllegal(this, "CSSImportRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] CSSImportRule_set_media, set object'); break case "function": cbb_wf.console.log('[*] CSSImportRule_set_media, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.media = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSImportRule_set_media, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.CSSImportRule_get_styleSheet = function () { let r = cbb_wf.checkIllegal(this, "CSSImportRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.styleSheet; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSImportRule_get_styleSheet, 返回object'); break case "function": cbb_wf.console.log('[*] CSSImportRule_get_styleSheet, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSImportRule_get_styleSheet, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSImportRule_get_layerName = function () { let r = cbb_wf.checkIllegal(this, "CSSImportRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.layerName; switch (typeof result) { case "object": cbb_wf.console.log('[*] CSSImportRule_get_layerName, 返回object'); break case "function": cbb_wf.console.log('[*] CSSImportRule_get_layerName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSImportRule_get_layerName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.CSSGroupingRule_get_cssRules = function () { let r = cbb_wf.checkIllegal(this, "CSSGroupingRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cssRules'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSGroupingRule_get_cssRules, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSGroupingRule_deleteRule = function () { let r = cbb_wf.checkIllegal(this, "CSSGroupingRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSGroupingRule_deleteRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSGroupingRule_insertRule = function () { let r = cbb_wf.checkIllegal(this, "CSSGroupingRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSGroupingRule_insertRule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSFontFaceRule_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSFontFaceRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSFontFaceRule_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_name = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'name', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_name, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_system = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'system'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_system, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_system = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'system', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_system, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_symbols = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'symbols'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_symbols, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_symbols = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'symbols', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_symbols, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_additiveSymbols = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'additiveSymbols'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_additiveSymbols, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_additiveSymbols = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'additiveSymbols', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_additiveSymbols, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_negative = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'negative'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_negative, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_negative = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'negative', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_negative, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_prefix = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'prefix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_prefix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_prefix = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'prefix', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_prefix, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_suffix = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'suffix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_suffix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_suffix = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'suffix', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_suffix, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_range = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'range'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_range, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_range = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'range', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_range, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_pad = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pad'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_pad, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_pad = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'pad', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_pad, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_speakAs = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'speakAs'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_speakAs, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_speakAs = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'speakAs', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_speakAs, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSCounterStyleRule_get_fallback = function () { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fallback'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_get_fallback, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSCounterStyleRule_set_fallback = function (val) { let r = cbb_wf.checkIllegal(this, "CSSCounterStyleRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'fallback', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSCounterStyleRule_set_fallback, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSConditionRule_get_conditionText = function () { let r = cbb_wf.checkIllegal(this, "CSSConditionRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'conditionText'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSConditionRule_get_conditionText, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ByteLengthQueuingStrategy_get_highWaterMark = function () { let r = cbb_wf.checkIllegal(this, "ByteLengthQueuingStrategy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'highWaterMark'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ByteLengthQueuingStrategy_get_highWaterMark, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ByteLengthQueuingStrategy_get_size = function () { let r = cbb_wf.checkIllegal(this, "ByteLengthQueuingStrategy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ByteLengthQueuingStrategy_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BroadcastChannel_get_name = function () { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BroadcastChannel_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BroadcastChannel_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BroadcastChannel_get_onmessageerror = function () { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessageerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_get_onmessageerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BroadcastChannel_set_onmessageerror = function (val) { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessageerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_set_onmessageerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BroadcastChannel_close = function () { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BroadcastChannel_postMessage = function () { let r = cbb_wf.checkIllegal(this, "BroadcastChannel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BroadcastChannel_postMessage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BlobEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "BlobEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BlobEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BlobEvent_get_timecode = function () { let r = cbb_wf.checkIllegal(this, "BlobEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timecode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BlobEvent_get_timecode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Blob_get_size = function () { let r = cbb_wf.checkIllegal(this, "Blob"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Blob_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Blob_get_type = function () { let r = cbb_wf.checkIllegal(this, "Blob"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Blob_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Blob_arrayBuffer = function () { let r = cbb_wf.checkIllegal(this, "Blob"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Blob_arrayBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Blob_slice = function () { let r = cbb_wf.checkIllegal(this, "Blob"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Blob_slice, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Blob_stream = function () { let r = cbb_wf.checkIllegal(this, "Blob"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Blob_stream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Blob_text = function () { let r = cbb_wf.checkIllegal(this, "Blob"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Blob_text, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BiquadFilterNode_get_type = function () { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BiquadFilterNode_set_type = function (val) { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'type', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_set_type, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BiquadFilterNode_get_frequency = function () { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'frequency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_get_frequency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BiquadFilterNode_get_detune = function () { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detune'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_get_detune, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BiquadFilterNode_get_Q = function () { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'Q'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_get_Q, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BiquadFilterNode_get_gain = function () { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gain'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_get_gain, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BiquadFilterNode_getFrequencyResponse = function () { let r = cbb_wf.checkIllegal(this, "BiquadFilterNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BiquadFilterNode_getFrequencyResponse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BeforeUnloadEvent_get_returnValue = function () { let r = cbb_wf.checkIllegal(this, "BeforeUnloadEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'returnValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BeforeUnloadEvent_get_returnValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BeforeUnloadEvent_set_returnValue = function (val) { let r = cbb_wf.checkIllegal(this, "BeforeUnloadEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'returnValue', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BeforeUnloadEvent_set_returnValue, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BeforeInstallPromptEvent_get_platforms = function () { let r = cbb_wf.checkIllegal(this, "BeforeInstallPromptEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'platforms'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BeforeInstallPromptEvent_get_platforms, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BeforeInstallPromptEvent_get_userChoice = function () { let r = cbb_wf.checkIllegal(this, "BeforeInstallPromptEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userChoice'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BeforeInstallPromptEvent_get_userChoice, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BeforeInstallPromptEvent_prompt = function () { let r = cbb_wf.checkIllegal(this, "BeforeInstallPromptEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BeforeInstallPromptEvent_prompt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_get_destination = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'destination'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_destination, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BaseAudioContext_get_currentTime = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_currentTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BaseAudioContext_get_sampleRate = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sampleRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_sampleRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BaseAudioContext_get_listener = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'listener'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_listener, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BaseAudioContext_get_state = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BaseAudioContext_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BaseAudioContext_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BaseAudioContext_createAnalyser = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createAnalyser, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createBiquadFilter = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createBiquadFilter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createBuffer = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createBufferSource = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createBufferSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createChannelMerger = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createChannelMerger, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createChannelSplitter = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createChannelSplitter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createConstantSource = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createConstantSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createConvolver = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createConvolver, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createDelay = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createDelay, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createDynamicsCompressor = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createDynamicsCompressor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createGain = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createGain, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createIIRFilter = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createIIRFilter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createOscillator = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createOscillator, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createPanner = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createPanner, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createPeriodicWave = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createPeriodicWave, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createScriptProcessor = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createScriptProcessor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createStereoPanner = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createStereoPanner, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_createWaveShaper = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_createWaveShaper, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_decodeAudioData = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_decodeAudioData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BaseAudioContext_get_audioWorklet = function () { let r = cbb_wf.checkIllegal(this, "BaseAudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'audioWorklet'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BaseAudioContext_get_audioWorklet, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BarProp_get_visible = function () { let r = cbb_wf.checkIllegal(this, "BarProp"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'visible'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BarProp_get_visible, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioWorkletNode_get_parameters = function () { let r = cbb_wf.checkIllegal(this, "AudioWorkletNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'parameters'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioWorkletNode_get_parameters, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioWorkletNode_get_port = function () { let r = cbb_wf.checkIllegal(this, "AudioWorkletNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioWorkletNode_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioWorkletNode_get_onprocessorerror = function () { let r = cbb_wf.checkIllegal(this, "AudioWorkletNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onprocessorerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioWorkletNode_get_onprocessorerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioWorkletNode_set_onprocessorerror = function (val) { let r = cbb_wf.checkIllegal(this, "AudioWorkletNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onprocessorerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioWorkletNode_set_onprocessorerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioScheduledSourceNode_get_onended = function () { let r = cbb_wf.checkIllegal(this, "AudioScheduledSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onended'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioScheduledSourceNode_get_onended, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioScheduledSourceNode_set_onended = function (val) { let r = cbb_wf.checkIllegal(this, "AudioScheduledSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onended', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioScheduledSourceNode_set_onended, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioScheduledSourceNode_start = function () { let r = cbb_wf.checkIllegal(this, "AudioScheduledSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioScheduledSourceNode_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioScheduledSourceNode_stop = function () { let r = cbb_wf.checkIllegal(this, "AudioScheduledSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioScheduledSourceNode_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioProcessingEvent_get_playbackTime = function () { let r = cbb_wf.checkIllegal(this, "AudioProcessingEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'playbackTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioProcessingEvent_get_playbackTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioProcessingEvent_get_inputBuffer = function () { let r = cbb_wf.checkIllegal(this, "AudioProcessingEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inputBuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioProcessingEvent_get_inputBuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioProcessingEvent_get_outputBuffer = function () { let r = cbb_wf.checkIllegal(this, "AudioProcessingEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'outputBuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioProcessingEvent_get_outputBuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParamMap_get_size = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParamMap_entries = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParamMap_forEach = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParamMap_get = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParamMap_has = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParamMap_keys = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParamMap_values = function () { let r = cbb_wf.checkIllegal(this, "AudioParamMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParamMap_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_get_value = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParam_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'value', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_set_value, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioParam_get_automationRate = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'automationRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_get_automationRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParam_set_automationRate = function (val) { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'automationRate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_set_automationRate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioParam_get_defaultValue = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'defaultValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_get_defaultValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParam_get_minValue = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_get_minValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParam_get_maxValue = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_get_maxValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioParam_cancelAndHoldAtTime = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_cancelAndHoldAtTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_cancelScheduledValues = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_cancelScheduledValues, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_exponentialRampToValueAtTime = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_exponentialRampToValueAtTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_linearRampToValueAtTime = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_linearRampToValueAtTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_setTargetAtTime = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_setTargetAtTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_setValueAtTime = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_setValueAtTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioParam_setValueCurveAtTime = function () { let r = cbb_wf.checkIllegal(this, "AudioParam"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioParam_setValueCurveAtTime, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioNode_get_context = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'context'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_get_context, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioNode_get_numberOfInputs = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfInputs'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_get_numberOfInputs, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioNode_get_numberOfOutputs = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfOutputs'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_get_numberOfOutputs, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioNode_get_channelCount = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'channelCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_get_channelCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioNode_set_channelCount = function (val) { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'channelCount', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_set_channelCount, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioNode_get_channelCountMode = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'channelCountMode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_get_channelCountMode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioNode_set_channelCountMode = function (val) { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'channelCountMode', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_set_channelCountMode, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioNode_get_channelInterpretation = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'channelInterpretation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_get_channelInterpretation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioNode_set_channelInterpretation = function (val) { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'channelInterpretation', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_set_channelInterpretation, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioNode_connect = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_connect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioNode_disconnect = function () { let r = cbb_wf.checkIllegal(this, "AudioNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioNode_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioListener_get_positionX = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_positionX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_positionY = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_positionY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_positionZ = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionZ'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_positionZ, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_forwardX = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'forwardX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_forwardX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_forwardY = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'forwardY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_forwardY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_forwardZ = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'forwardZ'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_forwardZ, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_upX = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upX'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_upX, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_upY = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upY'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_upY, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_get_upZ = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'upZ'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_get_upZ, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioListener_setOrientation = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_setOrientation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioListener_setPosition = function () { let r = cbb_wf.checkIllegal(this, "AudioListener"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioListener_setPosition, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioDestinationNode_get_maxChannelCount = function () { let r = cbb_wf.checkIllegal(this, "AudioDestinationNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxChannelCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDestinationNode_get_maxChannelCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioContext_get_baseLatency = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseLatency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_get_baseLatency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioContext_get_outputLatency = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'outputLatency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_get_outputLatency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioContext_close = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioContext_createMediaElementSource = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_createMediaElementSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioContext_createMediaStreamDestination = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_createMediaStreamDestination, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioContext_createMediaStreamSource = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_createMediaStreamSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioContext_getOutputTimestamp = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_getOutputTimestamp, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioContext_resume = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_resume, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioContext_suspend = function () { let r = cbb_wf.checkIllegal(this, "AudioContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioContext_suspend, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioBufferSourceNode_get_buffer = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'buffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_get_buffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBufferSourceNode_set_buffer = function (val) { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'buffer', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_set_buffer, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioBufferSourceNode_get_playbackRate = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'playbackRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_get_playbackRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBufferSourceNode_get_detune = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'detune'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_get_detune, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBufferSourceNode_get_loop = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loop'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_get_loop, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBufferSourceNode_set_loop = function (val) { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'loop', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_set_loop, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioBufferSourceNode_get_loopStart = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loopStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_get_loopStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBufferSourceNode_set_loopStart = function (val) { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'loopStart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_set_loopStart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioBufferSourceNode_get_loopEnd = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'loopEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_get_loopEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBufferSourceNode_set_loopEnd = function (val) { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'loopEnd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_set_loopEnd, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AudioBufferSourceNode_start = function () { let r = cbb_wf.checkIllegal(this, "AudioBufferSourceNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBufferSourceNode_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioBuffer_get_length = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBuffer_get_duration = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBuffer_get_sampleRate = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sampleRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_get_sampleRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBuffer_get_numberOfChannels = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfChannels'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_get_numberOfChannels, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioBuffer_copyFromChannel = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_copyFromChannel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioBuffer_copyToChannel = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_copyToChannel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioBuffer_getChannelData = function () { let r = cbb_wf.checkIllegal(this, "AudioBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioBuffer_getChannelData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Attr_get_namespaceURI = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.namespaceURI; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_namespaceURI, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_namespaceURI, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_namespaceURI, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Attr_get_prefix = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.prefix; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_prefix, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_prefix, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_prefix, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Attr_get_localName = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.localName; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_localName, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_localName, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_localName, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Attr_get_name = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.name; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_name, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_name, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_name, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Attr_get_value = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.value; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_value, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_value, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_value, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Attr_set_value = function (val) { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] Attr_set_value, set object'); break case "function": cbb_wf.console.log('[*] Attr_set_value, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.value = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_set_value, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.Attr_get_ownerElement = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.ownerElement; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_ownerElement, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_ownerElement, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_ownerElement, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.Attr_get_specified = function () { let r = cbb_wf.checkIllegal(this, "Attr"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.specified; switch (typeof result) { case "object": cbb_wf.console.log('[*] Attr_get_specified, 返回object'); break case "function": cbb_wf.console.log('[*] Attr_get_specified, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Attr_get_specified, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AnimationEvent_get_animationName = function () { let r = cbb_wf.checkIllegal(this, "AnimationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animationName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationEvent_get_animationName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnimationEvent_get_elapsedTime = function () { let r = cbb_wf.checkIllegal(this, "AnimationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'elapsedTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationEvent_get_elapsedTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnimationEvent_get_pseudoElement = function () { let r = cbb_wf.checkIllegal(this, "AnimationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pseudoElement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationEvent_get_pseudoElement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnimationEffect_getComputedTiming = function () { let r = cbb_wf.checkIllegal(this, "AnimationEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationEffect_getComputedTiming, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AnimationEffect_getTiming = function () { let r = cbb_wf.checkIllegal(this, "AnimationEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationEffect_getTiming, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AnimationEffect_updateTiming = function () { let r = cbb_wf.checkIllegal(this, "AnimationEffect"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationEffect_updateTiming, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_get_effect = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'effect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_effect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_effect = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'effect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_effect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_startTime = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'startTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_startTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_startTime = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'startTime', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_startTime, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_currentTime = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_currentTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_currentTime = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'currentTime', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_currentTime, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_playbackRate = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'playbackRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_playbackRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_playbackRate = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'playbackRate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_playbackRate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_playState = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'playState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_playState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_get_pending = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pending'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_pending, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_get_id = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_id = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'id', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_id, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_onfinish = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onfinish'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_onfinish, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_onfinish = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onfinish', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_onfinish, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_oncancel = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncancel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_oncancel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_oncancel = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncancel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_oncancel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_cancel = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_finish = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_finish, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_pause = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_pause, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_play = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_play, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_reverse = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_reverse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_updatePlaybackRate = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_updatePlaybackRate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_get_timeline = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timeline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_timeline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_timeline = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'timeline', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_timeline, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_replaceState = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'replaceState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_replaceState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_get_onremove = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onremove'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_onremove, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_set_onremove = function (val) { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onremove', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_set_onremove, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Animation_get_finished = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'finished'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_finished, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_get_ready = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ready'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_get_ready, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Animation_commitStyles = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_commitStyles, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Animation_persist = function () { let r = cbb_wf.checkIllegal(this, "Animation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Animation_persist, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AnalyserNode_get_fftSize = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fftSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_get_fftSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnalyserNode_set_fftSize = function (val) { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'fftSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_set_fftSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AnalyserNode_get_frequencyBinCount = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'frequencyBinCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_get_frequencyBinCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnalyserNode_get_minDecibels = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minDecibels'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_get_minDecibels, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnalyserNode_set_minDecibels = function (val) { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'minDecibels', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_set_minDecibels, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AnalyserNode_get_maxDecibels = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxDecibels'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_get_maxDecibels, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnalyserNode_set_maxDecibels = function (val) { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxDecibels', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_set_maxDecibels, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AnalyserNode_get_smoothingTimeConstant = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'smoothingTimeConstant'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_get_smoothingTimeConstant, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnalyserNode_set_smoothingTimeConstant = function (val) { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'smoothingTimeConstant', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_set_smoothingTimeConstant, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AnalyserNode_getByteFrequencyData = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_getByteFrequencyData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AnalyserNode_getByteTimeDomainData = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_getByteTimeDomainData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AnalyserNode_getFloatFrequencyData = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_getFloatFrequencyData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AnalyserNode_getFloatTimeDomainData = function () { let r = cbb_wf.checkIllegal(this, "AnalyserNode"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnalyserNode_getFloatTimeDomainData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AbstractRange_get_startContainer = function () { let r = cbb_wf.checkIllegal(this, "AbstractRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.startContainer; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbstractRange_get_startContainer, 返回object'); break case "function": cbb_wf.console.log('[*] AbstractRange_get_startContainer, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbstractRange_get_startContainer, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbstractRange_get_startOffset = function () { let r = cbb_wf.checkIllegal(this, "AbstractRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.startOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbstractRange_get_startOffset, 返回object'); break case "function": cbb_wf.console.log('[*] AbstractRange_get_startOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbstractRange_get_startOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbstractRange_get_endContainer = function () { let r = cbb_wf.checkIllegal(this, "AbstractRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.endContainer; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbstractRange_get_endContainer, 返回object'); break case "function": cbb_wf.console.log('[*] AbstractRange_get_endContainer, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbstractRange_get_endContainer, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbstractRange_get_endOffset = function () { let r = cbb_wf.checkIllegal(this, "AbstractRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.endOffset; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbstractRange_get_endOffset, 返回object'); break case "function": cbb_wf.console.log('[*] AbstractRange_get_endOffset, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbstractRange_get_endOffset, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbstractRange_get_collapsed = function () { let r = cbb_wf.checkIllegal(this, "AbstractRange"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.collapsed; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbstractRange_get_collapsed, 返回object'); break case "function": cbb_wf.console.log('[*] AbstractRange_get_collapsed, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbstractRange_get_collapsed, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbortSignal_get_aborted = function () { let r = cbb_wf.checkIllegal(this, "AbortSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.aborted; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbortSignal_get_aborted, 返回object'); break case "function": cbb_wf.console.log('[*] AbortSignal_get_aborted, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortSignal_get_aborted, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbortSignal_get_reason = function () { let r = cbb_wf.checkIllegal(this, "AbortSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.reason; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbortSignal_get_reason, 返回object'); break case "function": cbb_wf.console.log('[*] AbortSignal_get_reason, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortSignal_get_reason, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbortSignal_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "AbortSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.onabort; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbortSignal_get_onabort, 返回object'); break case "function": cbb_wf.console.log('[*] AbortSignal_get_onabort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortSignal_get_onabort, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbortSignal_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "AbortSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } switch (typeof val) { case "object": cbb_wf.console.log('[*] AbortSignal_set_onabort, set object'); break case "function": cbb_wf.console.log('[*] AbortSignal_set_onabort, set function'); break default: let dom_element = cbb_wf.getValue(this, "dom_element"); dom_element.onabort = val; } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortSignal_set_onabort, this =>", toString.call(this), ", val => ", '' + val, ', 暂时未实现功能'); } } this.AbortSignal_throwIfAborted = function () { let r = cbb_wf.checkIllegal(this, "AbortSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.throwIfAborted.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] AbortSignal_throwIfAborted, 返回object'); break case "function": cbb_wf.console.log('[*] AbortSignal_throwIfAborted, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortSignal_throwIfAborted, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AbortController_get_signal = function () { let r = cbb_wf.checkIllegal(this, "AbortController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.signal; switch (typeof result) { case "object": cbb_wf.console.log('[*] AbortController_get_signal, 返回object'); break case "function": cbb_wf.console.log('[*] AbortController_get_signal, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortController_get_signal, this =>", toString.call(this), ", result => ", '' + result, ', 暂时未实现功能'); } return result; } this.AbortController_abort = function () { let r = cbb_wf.checkIllegal(this, "AbortController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let dom_element = cbb_wf.getValue(this, "dom_element"); let result = dom_element.abort.apply(dom_element, arguments); switch (typeof result) { case "object": cbb_wf.console.log('[*] AbortController_abort, 返回object'); break case "function": cbb_wf.console.log('[*] AbortController_abort, 返回function'); break default: } if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AbortController_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Accelerometer_get_x = function () { let r = cbb_wf.checkIllegal(this, "Accelerometer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Accelerometer_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Accelerometer_get_y = function () { let r = cbb_wf.checkIllegal(this, "Accelerometer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Accelerometer_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Accelerometer_get_z = function () { let r = cbb_wf.checkIllegal(this, "Accelerometer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Accelerometer_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Cache_add = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Cache_addAll = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_addAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Cache_delete = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Cache_keys = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Cache_match = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_match, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Cache_matchAll = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_matchAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Cache_put = function () { let r = cbb_wf.checkIllegal(this, "Cache"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Cache_put, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CacheStorage_delete = function () { let r = cbb_wf.checkIllegal(this, "CacheStorage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CacheStorage_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CacheStorage_has = function () { let r = cbb_wf.checkIllegal(this, "CacheStorage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CacheStorage_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CacheStorage_keys = function () { let r = cbb_wf.checkIllegal(this, "CacheStorage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CacheStorage_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CacheStorage_match = function () { let r = cbb_wf.checkIllegal(this, "CacheStorage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CacheStorage_match, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CacheStorage_open = function () { let r = cbb_wf.checkIllegal(this, "CacheStorage"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CacheStorage_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Clipboard_read = function () { let r = cbb_wf.checkIllegal(this, "Clipboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Clipboard_read, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Clipboard_readText = function () { let r = cbb_wf.checkIllegal(this, "Clipboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Clipboard_readText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Clipboard_write = function () { let r = cbb_wf.checkIllegal(this, "Clipboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Clipboard_write, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Clipboard_writeText = function () { let r = cbb_wf.checkIllegal(this, "Clipboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Clipboard_writeText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ClipboardItem_get_types = function () { let r = cbb_wf.checkIllegal(this, "ClipboardItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'types'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ClipboardItem_get_types, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ClipboardItem_getType = function () { let r = cbb_wf.checkIllegal(this, "ClipboardItem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ClipboardItem_getType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieChangeEvent_get_changed = function () { let r = cbb_wf.checkIllegal(this, "CookieChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'changed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieChangeEvent_get_changed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CookieChangeEvent_get_deleted = function () { let r = cbb_wf.checkIllegal(this, "CookieChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deleted'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieChangeEvent_get_deleted, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CookieStore_delete = function () { let r = cbb_wf.checkIllegal(this, "CookieStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStore_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieStore_get = function () { let r = cbb_wf.checkIllegal(this, "CookieStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStore_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieStore_getAll = function () { let r = cbb_wf.checkIllegal(this, "CookieStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStore_getAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieStore_set = function () { let r = cbb_wf.checkIllegal(this, "CookieStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStore_set, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieStore_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "CookieStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStore_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CookieStore_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "CookieStore"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStore_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CookieStoreManager_getSubscriptions = function () { let r = cbb_wf.checkIllegal(this, "CookieStoreManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStoreManager_getSubscriptions, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieStoreManager_subscribe = function () { let r = cbb_wf.checkIllegal(this, "CookieStoreManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStoreManager_subscribe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CookieStoreManager_unsubscribe = function () { let r = cbb_wf.checkIllegal(this, "CookieStoreManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CookieStoreManager_unsubscribe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Credential_get_id = function () { let r = cbb_wf.checkIllegal(this, "Credential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Credential_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Credential_get_type = function () { let r = cbb_wf.checkIllegal(this, "Credential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Credential_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CredentialsContainer_create = function () { let r = cbb_wf.checkIllegal(this, "CredentialsContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CredentialsContainer_create, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CredentialsContainer_get = function () { let r = cbb_wf.checkIllegal(this, "CredentialsContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CredentialsContainer_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CredentialsContainer_preventSilentAccess = function () { let r = cbb_wf.checkIllegal(this, "CredentialsContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CredentialsContainer_preventSilentAccess, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CredentialsContainer_store = function () { let r = cbb_wf.checkIllegal(this, "CredentialsContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CredentialsContainer_store, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CryptoKey_get_type = function () { let r = cbb_wf.checkIllegal(this, "CryptoKey"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CryptoKey_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CryptoKey_get_extractable = function () { let r = cbb_wf.checkIllegal(this, "CryptoKey"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'extractable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CryptoKey_get_extractable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CryptoKey_get_algorithm = function () { let r = cbb_wf.checkIllegal(this, "CryptoKey"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'algorithm'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CryptoKey_get_algorithm, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CryptoKey_get_usages = function () { let r = cbb_wf.checkIllegal(this, "CryptoKey"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'usages'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CryptoKey_get_usages, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEvent_get_acceleration = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'acceleration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEvent_get_acceleration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEvent_get_accelerationIncludingGravity = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'accelerationIncludingGravity'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEvent_get_accelerationIncludingGravity, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEvent_get_rotationRate = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rotationRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEvent_get_rotationRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEvent_get_interval = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interval'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEvent_get_interval, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEventAcceleration_get_x = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEventAcceleration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEventAcceleration_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEventAcceleration_get_y = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEventAcceleration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEventAcceleration_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEventAcceleration_get_z = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEventAcceleration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEventAcceleration_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEventRotationRate_get_alpha = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEventRotationRate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'alpha'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEventRotationRate_get_alpha, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEventRotationRate_get_beta = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEventRotationRate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'beta'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEventRotationRate_get_beta, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceMotionEventRotationRate_get_gamma = function () { let r = cbb_wf.checkIllegal(this, "DeviceMotionEventRotationRate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gamma'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceMotionEventRotationRate_get_gamma, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceOrientationEvent_get_alpha = function () { let r = cbb_wf.checkIllegal(this, "DeviceOrientationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'alpha'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceOrientationEvent_get_alpha, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceOrientationEvent_get_beta = function () { let r = cbb_wf.checkIllegal(this, "DeviceOrientationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'beta'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceOrientationEvent_get_beta, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceOrientationEvent_get_gamma = function () { let r = cbb_wf.checkIllegal(this, "DeviceOrientationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gamma'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceOrientationEvent_get_gamma, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DeviceOrientationEvent_get_absolute = function () { let r = cbb_wf.checkIllegal(this, "DeviceOrientationEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'absolute'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DeviceOrientationEvent_get_absolute, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FederatedCredential_get_provider = function () { let r = cbb_wf.checkIllegal(this, "FederatedCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'provider'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FederatedCredential_get_provider, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FederatedCredential_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "FederatedCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FederatedCredential_get_protocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FederatedCredential_get_name = function () { let r = cbb_wf.checkIllegal(this, "FederatedCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FederatedCredential_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FederatedCredential_get_iconURL = function () { let r = cbb_wf.checkIllegal(this, "FederatedCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'iconURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FederatedCredential_get_iconURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gyroscope_get_x = function () { let r = cbb_wf.checkIllegal(this, "Gyroscope"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gyroscope_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gyroscope_get_y = function () { let r = cbb_wf.checkIllegal(this, "Gyroscope"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gyroscope_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Gyroscope_get_z = function () { let r = cbb_wf.checkIllegal(this, "Gyroscope"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'z'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Gyroscope_get_z, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Keyboard_getLayoutMap = function () { let r = cbb_wf.checkIllegal(this, "Keyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Keyboard_getLayoutMap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Keyboard_lock = function () { let r = cbb_wf.checkIllegal(this, "Keyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Keyboard_lock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Keyboard_unlock = function () { let r = cbb_wf.checkIllegal(this, "Keyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Keyboard_unlock, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardLayoutMap_get_size = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.KeyboardLayoutMap_entries = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardLayoutMap_forEach = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardLayoutMap_get = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardLayoutMap_has = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardLayoutMap_keys = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.KeyboardLayoutMap_values = function () { let r = cbb_wf.checkIllegal(this, "KeyboardLayoutMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "KeyboardLayoutMap_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Lock_get_name = function () { let r = cbb_wf.checkIllegal(this, "Lock"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Lock_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Lock_get_mode = function () { let r = cbb_wf.checkIllegal(this, "Lock"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Lock_get_mode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LockManager_query = function () { let r = cbb_wf.checkIllegal(this, "LockManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LockManager_query, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.LockManager_request = function () { let r = cbb_wf.checkIllegal(this, "LockManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LockManager_request, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIAccess_get_inputs = function () { let r = cbb_wf.checkIllegal(this, "MIDIAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inputs'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIAccess_get_inputs, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIAccess_get_outputs = function () { let r = cbb_wf.checkIllegal(this, "MIDIAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'outputs'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIAccess_get_outputs, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIAccess_get_sysexEnabled = function () { let r = cbb_wf.checkIllegal(this, "MIDIAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sysexEnabled'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIAccess_get_sysexEnabled, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIAccess_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "MIDIAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIAccess_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIAccess_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "MIDIAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIAccess_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MIDIConnectionEvent_get_port = function () { let r = cbb_wf.checkIllegal(this, "MIDIConnectionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIConnectionEvent_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIInput_get_onmidimessage = function () { let r = cbb_wf.checkIllegal(this, "MIDIInput"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmidimessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInput_get_onmidimessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIInput_set_onmidimessage = function (val) { let r = cbb_wf.checkIllegal(this, "MIDIInput"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmidimessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInput_set_onmidimessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MIDIInputMap_get_size = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIInputMap_entries = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIInputMap_forEach = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIInputMap_get = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIInputMap_has = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIInputMap_keys = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIInputMap_values = function () { let r = cbb_wf.checkIllegal(this, "MIDIInputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIInputMap_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIMessageEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "MIDIMessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIMessageEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIOutput_send = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutput"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutput_send, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIOutputMap_get_size = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIOutputMap_entries = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIOutputMap_forEach = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIOutputMap_get = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIOutputMap_has = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIOutputMap_keys = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIOutputMap_values = function () { let r = cbb_wf.checkIllegal(this, "MIDIOutputMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIOutputMap_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIPort_get_connection = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connection'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_connection, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_id = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_manufacturer = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'manufacturer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_manufacturer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_name = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_state = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_type = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_version = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'version'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_version, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MIDIPort_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MIDIPort_close = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MIDIPort_open = function () { let r = cbb_wf.checkIllegal(this, "MIDIPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MIDIPort_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaDeviceInfo_get_deviceId = function () { let r = cbb_wf.checkIllegal(this, "MediaDeviceInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDeviceInfo_get_deviceId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaDeviceInfo_get_kind = function () { let r = cbb_wf.checkIllegal(this, "MediaDeviceInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'kind'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDeviceInfo_get_kind, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaDeviceInfo_get_label = function () { let r = cbb_wf.checkIllegal(this, "MediaDeviceInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'label'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDeviceInfo_get_label, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaDeviceInfo_get_groupId = function () { let r = cbb_wf.checkIllegal(this, "MediaDeviceInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'groupId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDeviceInfo_get_groupId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaDeviceInfo_toJSON = function () { let r = cbb_wf.checkIllegal(this, "MediaDeviceInfo"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDeviceInfo_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaDevices_enumerateDevices = function () { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_enumerateDevices, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaDevices_getSupportedConstraints = function () { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_getSupportedConstraints, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaDevices_getUserMedia = function () { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_getUserMedia, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaDevices_get_ondevicechange = function () { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondevicechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_get_ondevicechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaDevices_set_ondevicechange = function (val) { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondevicechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_set_ondevicechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaDevices_getDisplayMedia = function () { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_getDisplayMedia, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaDevices_setCaptureHandleConfig = function () { let r = cbb_wf.checkIllegal(this, "MediaDevices"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaDevices_setCaptureHandleConfig, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyMessageEvent_get_messageType = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyMessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'messageType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyMessageEvent_get_messageType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeyMessageEvent_get_message = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyMessageEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyMessageEvent_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_get_sessionId = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sessionId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_get_sessionId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_get_expiration = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'expiration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_get_expiration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_get_closed = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_get_closed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_get_keyStatuses = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keyStatuses'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_get_keyStatuses, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_get_onkeystatuseschange = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onkeystatuseschange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_get_onkeystatuseschange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_set_onkeystatuseschange = function (val) { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onkeystatuseschange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_set_onkeystatuseschange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaKeySession_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySession_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaKeySession_close = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeySession_generateRequest = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_generateRequest, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeySession_load = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_load, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeySession_remove = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeySession_update = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySession_update, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyStatusMap_get_size = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeyStatusMap_get = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyStatusMap_has = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyStatusMap_entries = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyStatusMap_forEach = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyStatusMap_keys = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeyStatusMap_values = function () { let r = cbb_wf.checkIllegal(this, "MediaKeyStatusMap"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeyStatusMap_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeySystemAccess_get_keySystem = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySystemAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'keySystem'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySystemAccess_get_keySystem, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaKeySystemAccess_createMediaKeys = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySystemAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySystemAccess_createMediaKeys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeySystemAccess_getConfiguration = function () { let r = cbb_wf.checkIllegal(this, "MediaKeySystemAccess"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeySystemAccess_getConfiguration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeys_createSession = function () { let r = cbb_wf.checkIllegal(this, "MediaKeys"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeys_createSession, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeys_setServerCertificate = function () { let r = cbb_wf.checkIllegal(this, "MediaKeys"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeys_setServerCertificate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaKeys_getStatusForPolicy = function () { let r = cbb_wf.checkIllegal(this, "MediaKeys"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaKeys_getStatusForPolicy, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationPreloadManager_disable = function () { let r = cbb_wf.checkIllegal(this, "NavigationPreloadManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationPreloadManager_disable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationPreloadManager_enable = function () { let r = cbb_wf.checkIllegal(this, "NavigationPreloadManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationPreloadManager_enable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationPreloadManager_getState = function () { let r = cbb_wf.checkIllegal(this, "NavigationPreloadManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationPreloadManager_getState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationPreloadManager_setHeaderValue = function () { let r = cbb_wf.checkIllegal(this, "NavigationPreloadManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationPreloadManager_setHeaderValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigatorManagedData_get_onmanagedconfigurationchange = function () { let r = cbb_wf.checkIllegal(this, "NavigatorManagedData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmanagedconfigurationchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorManagedData_get_onmanagedconfigurationchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigatorManagedData_set_onmanagedconfigurationchange = function (val) { let r = cbb_wf.checkIllegal(this, "NavigatorManagedData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmanagedconfigurationchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorManagedData_set_onmanagedconfigurationchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.NavigatorManagedData_getManagedConfiguration = function () { let r = cbb_wf.checkIllegal(this, "NavigatorManagedData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorManagedData_getManagedConfiguration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.OrientationSensor_get_quaternion = function () { let r = cbb_wf.checkIllegal(this, "OrientationSensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'quaternion'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OrientationSensor_get_quaternion, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OrientationSensor_populateMatrix = function () { let r = cbb_wf.checkIllegal(this, "OrientationSensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OrientationSensor_populateMatrix, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PasswordCredential_get_password = function () { let r = cbb_wf.checkIllegal(this, "PasswordCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'password'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PasswordCredential_get_password, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PasswordCredential_get_name = function () { let r = cbb_wf.checkIllegal(this, "PasswordCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PasswordCredential_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PasswordCredential_get_iconURL = function () { let r = cbb_wf.checkIllegal(this, "PasswordCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'iconURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PasswordCredential_get_iconURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_get_role = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'role'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_get_role, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_get_state = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_get_gatheringState = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gatheringState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_get_gatheringState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCIceTransport_get_ongatheringstatechange = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ongatheringstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_get_ongatheringstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_set_ongatheringstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ongatheringstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_set_ongatheringstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCIceTransport_get_onselectedcandidatepairchange = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onselectedcandidatepairchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_get_onselectedcandidatepairchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RTCIceTransport_set_onselectedcandidatepairchange = function (val) { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onselectedcandidatepairchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_set_onselectedcandidatepairchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RTCIceTransport_getLocalCandidates = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_getLocalCandidates, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCIceTransport_getLocalParameters = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_getLocalParameters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCIceTransport_getRemoteCandidates = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_getRemoteCandidates, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCIceTransport_getRemoteParameters = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_getRemoteParameters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RTCIceTransport_getSelectedCandidatePair = function () { let r = cbb_wf.checkIllegal(this, "RTCIceTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RTCIceTransport_getSelectedCandidatePair, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Sensor_get_activated = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'activated'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_get_activated, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Sensor_get_hasReading = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hasReading'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_get_hasReading, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Sensor_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Sensor_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Sensor_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Sensor_get_onreading = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onreading'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_get_onreading, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Sensor_set_onreading = function (val) { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onreading', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_set_onreading, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Sensor_get_onactivate = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onactivate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_get_onactivate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Sensor_set_onactivate = function (val) { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onactivate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_set_onactivate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Sensor_start = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Sensor_stop = function () { let r = cbb_wf.checkIllegal(this, "Sensor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Sensor_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SensorErrorEvent_get_error = function () { let r = cbb_wf.checkIllegal(this, "SensorErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SensorErrorEvent_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorker_get_scriptURL = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'scriptURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_get_scriptURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorker_get_state = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorker_get_onstatechange = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstatechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_get_onstatechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorker_set_onstatechange = function (val) { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstatechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_set_onstatechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ServiceWorker_postMessage = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_postMessage, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorker_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorker_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "ServiceWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorker_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ServiceWorkerContainer_get_controller = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'controller'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_get_controller, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerContainer_get_ready = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ready'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_get_ready, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerContainer_get_oncontrollerchange = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncontrollerchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_get_oncontrollerchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerContainer_set_oncontrollerchange = function (val) { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncontrollerchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_set_oncontrollerchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ServiceWorkerContainer_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerContainer_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ServiceWorkerContainer_get_onmessageerror = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessageerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_get_onmessageerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerContainer_set_onmessageerror = function (val) { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessageerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_set_onmessageerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ServiceWorkerContainer_getRegistration = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_getRegistration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerContainer_getRegistrations = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_getRegistrations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerContainer_register = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_register, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerContainer_startMessages = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerContainer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerContainer_startMessages, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerRegistration_get_installing = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'installing'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_installing, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_waiting = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'waiting'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_waiting, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_active = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'active'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_active, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_navigationPreload = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigationPreload'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_navigationPreload, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_scope = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'scope'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_scope, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_updateViaCache = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'updateViaCache'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_updateViaCache, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_onupdatefound = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onupdatefound'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_onupdatefound, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_set_onupdatefound = function (val) { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onupdatefound', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_set_onupdatefound, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ServiceWorkerRegistration_unregister = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_unregister, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerRegistration_update = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_update, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerRegistration_get_paymentManager = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'paymentManager'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_paymentManager, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_backgroundFetch = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'backgroundFetch'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_backgroundFetch, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_periodicSync = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'periodicSync'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_periodicSync, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_sync = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sync'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_sync, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_cookies = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'cookies'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_cookies, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_get_pushManager = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pushManager'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_get_pushManager, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ServiceWorkerRegistration_getNotifications = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_getNotifications, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ServiceWorkerRegistration_showNotification = function () { let r = cbb_wf.checkIllegal(this, "ServiceWorkerRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ServiceWorkerRegistration_showNotification, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageManager_estimate = function () { let r = cbb_wf.checkIllegal(this, "StorageManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageManager_estimate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageManager_persisted = function () { let r = cbb_wf.checkIllegal(this, "StorageManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageManager_persisted, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageManager_getDirectory = function () { let r = cbb_wf.checkIllegal(this, "StorageManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageManager_getDirectory, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageManager_persist = function () { let r = cbb_wf.checkIllegal(this, "StorageManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "StorageManager_persist, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_decrypt = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_decrypt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_deriveBits = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_deriveBits, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_deriveKey = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_deriveKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_digest = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_digest, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_encrypt = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_encrypt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_exportKey = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_exportKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_generateKey = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_generateKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_importKey = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_importKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_sign = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_sign, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_unwrapKey = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_unwrapKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_verify = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_verify, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SubtleCrypto_wrapKey = function () { let r = cbb_wf.checkIllegal(this, "SubtleCrypto"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SubtleCrypto_wrapKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Worklet_addModule = function () { let r = cbb_wf.checkIllegal(this, "Worklet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Worklet_addModule, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRDOMOverlayState_get_type = function () { let r = cbb_wf.checkIllegal(this, "XRDOMOverlayState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRDOMOverlayState_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLBinding_getReflectionCubeMap = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLBinding"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLBinding_getReflectionCubeMap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRWebGLBinding_getDepthInformation = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLBinding"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLBinding_getDepthInformation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioData_get_format = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'format'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_get_format, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioData_get_sampleRate = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sampleRate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_get_sampleRate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioData_get_numberOfFrames = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_get_numberOfFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioData_get_numberOfChannels = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'numberOfChannels'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_get_numberOfChannels, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioData_get_duration = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioData_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioData_allocationSize = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_allocationSize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioData_clone = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_clone, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioData_close = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioData_copyTo = function () { let r = cbb_wf.checkIllegal(this, "AudioData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioData_copyTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EncodedAudioChunk_get_type = function () { let r = cbb_wf.checkIllegal(this, "EncodedAudioChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedAudioChunk_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedAudioChunk_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "EncodedAudioChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedAudioChunk_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedAudioChunk_get_byteLength = function () { let r = cbb_wf.checkIllegal(this, "EncodedAudioChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'byteLength'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedAudioChunk_get_byteLength, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedAudioChunk_get_duration = function () { let r = cbb_wf.checkIllegal(this, "EncodedAudioChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedAudioChunk_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedAudioChunk_copyTo = function () { let r = cbb_wf.checkIllegal(this, "EncodedAudioChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedAudioChunk_copyTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EncodedVideoChunk_get_type = function () { let r = cbb_wf.checkIllegal(this, "EncodedVideoChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedVideoChunk_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedVideoChunk_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "EncodedVideoChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedVideoChunk_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedVideoChunk_get_duration = function () { let r = cbb_wf.checkIllegal(this, "EncodedVideoChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedVideoChunk_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedVideoChunk_get_byteLength = function () { let r = cbb_wf.checkIllegal(this, "EncodedVideoChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'byteLength'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedVideoChunk_get_byteLength, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EncodedVideoChunk_copyTo = function () { let r = cbb_wf.checkIllegal(this, "EncodedVideoChunk"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EncodedVideoChunk_copyTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageTrack_get_frameCount = function () { let r = cbb_wf.checkIllegal(this, "ImageTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'frameCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrack_get_frameCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrack_get_animated = function () { let r = cbb_wf.checkIllegal(this, "ImageTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animated'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrack_get_animated, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrack_get_repetitionCount = function () { let r = cbb_wf.checkIllegal(this, "ImageTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'repetitionCount'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrack_get_repetitionCount, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrack_get_selected = function () { let r = cbb_wf.checkIllegal(this, "ImageTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selected'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrack_get_selected, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrack_set_selected = function (val) { let r = cbb_wf.checkIllegal(this, "ImageTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'selected', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrack_set_selected, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ImageTrackList_get_length = function () { let r = cbb_wf.checkIllegal(this, "ImageTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrackList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrackList_get_selectedIndex = function () { let r = cbb_wf.checkIllegal(this, "ImageTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectedIndex'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrackList_get_selectedIndex, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrackList_get_selectedTrack = function () { let r = cbb_wf.checkIllegal(this, "ImageTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectedTrack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrackList_get_selectedTrack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageTrackList_get_ready = function () { let r = cbb_wf.checkIllegal(this, "ImageTrackList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ready'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageTrackList_get_ready, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoColorSpace_get_primaries = function () { let r = cbb_wf.checkIllegal(this, "VideoColorSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'primaries'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoColorSpace_get_primaries, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoColorSpace_get_transfer = function () { let r = cbb_wf.checkIllegal(this, "VideoColorSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transfer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoColorSpace_get_transfer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoColorSpace_get_matrix = function () { let r = cbb_wf.checkIllegal(this, "VideoColorSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matrix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoColorSpace_get_matrix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoColorSpace_get_fullRange = function () { let r = cbb_wf.checkIllegal(this, "VideoColorSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fullRange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoColorSpace_get_fullRange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoColorSpace_toJSON = function () { let r = cbb_wf.checkIllegal(this, "VideoColorSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoColorSpace_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoFrame_get_format = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'format'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_format, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_duration = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_codedWidth = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'codedWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_codedWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_codedHeight = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'codedHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_codedHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_codedRect = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'codedRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_codedRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_visibleRect = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'visibleRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_visibleRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_displayWidth = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'displayWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_displayWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_displayHeight = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'displayHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_displayHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_get_colorSpace = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'colorSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_get_colorSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoFrame_allocationSize = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_allocationSize, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoFrame_clone = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_clone, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoFrame_close = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoFrame_copyTo = function () { let r = cbb_wf.checkIllegal(this, "VideoFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoFrame_copyTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioDecoder_get_decodeQueueSize = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'decodeQueueSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_get_decodeQueueSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioDecoder_get_state = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioDecoder_close = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioDecoder_configure = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_configure, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioDecoder_decode = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_decode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioDecoder_flush = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_flush, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioDecoder_reset = function () { let r = cbb_wf.checkIllegal(this, "AudioDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioDecoder_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioEncoder_get_encodeQueueSize = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encodeQueueSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_get_encodeQueueSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioEncoder_get_state = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AudioEncoder_close = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioEncoder_configure = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_configure, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioEncoder_encode = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_encode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioEncoder_flush = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_flush, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AudioEncoder_reset = function () { let r = cbb_wf.checkIllegal(this, "AudioEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AudioEncoder_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageDecoder_get_type = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageDecoder_get_complete = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'complete'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_get_complete, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageDecoder_get_completed = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'completed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_get_completed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageDecoder_get_tracks = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tracks'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_get_tracks, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ImageDecoder_close = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageDecoder_decode = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_decode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ImageDecoder_reset = function () { let r = cbb_wf.checkIllegal(this, "ImageDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ImageDecoder_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoDecoder_get_decodeQueueSize = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'decodeQueueSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_get_decodeQueueSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoDecoder_get_state = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoDecoder_close = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoDecoder_configure = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_configure, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoDecoder_decode = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_decode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoDecoder_flush = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_flush, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoDecoder_reset = function () { let r = cbb_wf.checkIllegal(this, "VideoDecoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoDecoder_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoEncoder_get_encodeQueueSize = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'encodeQueueSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_get_encodeQueueSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoEncoder_get_state = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoEncoder_close = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoEncoder_configure = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_configure, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoEncoder_encode = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_encode, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoEncoder_flush = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_flush, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoEncoder_reset = function () { let r = cbb_wf.checkIllegal(this, "VideoEncoder"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoEncoder_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AuthenticatorAssertionResponse_get_authenticatorData = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAssertionResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'authenticatorData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAssertionResponse_get_authenticatorData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AuthenticatorAssertionResponse_get_signature = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAssertionResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'signature'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAssertionResponse_get_signature, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AuthenticatorAssertionResponse_get_userHandle = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAssertionResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userHandle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAssertionResponse_get_userHandle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AuthenticatorAttestationResponse_get_attestationObject = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAttestationResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'attestationObject'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAttestationResponse_get_attestationObject, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AuthenticatorAttestationResponse_getAuthenticatorData = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAttestationResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAttestationResponse_getAuthenticatorData, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AuthenticatorAttestationResponse_getPublicKey = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAttestationResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAttestationResponse_getPublicKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AuthenticatorAttestationResponse_getPublicKeyAlgorithm = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAttestationResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAttestationResponse_getPublicKeyAlgorithm, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AuthenticatorAttestationResponse_getTransports = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorAttestationResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorAttestationResponse_getTransports, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.AuthenticatorResponse_get_clientDataJSON = function () { let r = cbb_wf.checkIllegal(this, "AuthenticatorResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'clientDataJSON'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AuthenticatorResponse_get_clientDataJSON, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PublicKeyCredential_get_rawId = function () { let r = cbb_wf.checkIllegal(this, "PublicKeyCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rawId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PublicKeyCredential_get_rawId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PublicKeyCredential_get_response = function () { let r = cbb_wf.checkIllegal(this, "PublicKeyCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'response'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PublicKeyCredential_get_response, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PublicKeyCredential_get_authenticatorAttachment = function () { let r = cbb_wf.checkIllegal(this, "PublicKeyCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'authenticatorAttachment'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PublicKeyCredential_get_authenticatorAttachment, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PublicKeyCredential_getClientExtensionResults = function () { let r = cbb_wf.checkIllegal(this, "PublicKeyCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PublicKeyCredential_getClientExtensionResults, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BatteryManager_get_charging = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'charging'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_charging, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_get_chargingTime = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'chargingTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_chargingTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_get_dischargingTime = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dischargingTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_dischargingTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_get_level = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'level'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_level, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_get_onchargingchange = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchargingchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_onchargingchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_set_onchargingchange = function (val) { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchargingchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_set_onchargingchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BatteryManager_get_onchargingtimechange = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchargingtimechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_onchargingtimechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_set_onchargingtimechange = function (val) { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchargingtimechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_set_onchargingtimechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BatteryManager_get_ondischargingtimechange = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondischargingtimechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_ondischargingtimechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_set_ondischargingtimechange = function (val) { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondischargingtimechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_set_ondischargingtimechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BatteryManager_get_onlevelchange = function () { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onlevelchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_get_onlevelchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BatteryManager_set_onlevelchange = function (val) { let r = cbb_wf.checkIllegal(this, "BatteryManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onlevelchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BatteryManager_set_onlevelchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Bluetooth_getAvailability = function () { let r = cbb_wf.checkIllegal(this, "Bluetooth"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Bluetooth_getAvailability, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Bluetooth_requestDevice = function () { let r = cbb_wf.checkIllegal(this, "Bluetooth"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Bluetooth_requestDevice, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothCharacteristicProperties_get_broadcast = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'broadcast'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_broadcast, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_read = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'read'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_read, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_writeWithoutResponse = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writeWithoutResponse'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_writeWithoutResponse, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_write = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'write'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_write, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_notify = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'notify'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_notify, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_indicate = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'indicate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_indicate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_authenticatedSignedWrites = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'authenticatedSignedWrites'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_authenticatedSignedWrites, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_reliableWrite = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reliableWrite'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_reliableWrite, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothCharacteristicProperties_get_writableAuxiliaries = function () { let r = cbb_wf.checkIllegal(this, "BluetoothCharacteristicProperties"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writableAuxiliaries'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothCharacteristicProperties_get_writableAuxiliaries, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothDevice_get_id = function () { let r = cbb_wf.checkIllegal(this, "BluetoothDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothDevice_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothDevice_get_name = function () { let r = cbb_wf.checkIllegal(this, "BluetoothDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothDevice_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothDevice_get_gatt = function () { let r = cbb_wf.checkIllegal(this, "BluetoothDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gatt'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothDevice_get_gatt, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothDevice_get_ongattserverdisconnected = function () { let r = cbb_wf.checkIllegal(this, "BluetoothDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ongattserverdisconnected'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothDevice_get_ongattserverdisconnected, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothDevice_set_ongattserverdisconnected = function (val) { let r = cbb_wf.checkIllegal(this, "BluetoothDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ongattserverdisconnected', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothDevice_set_ongattserverdisconnected, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BluetoothRemoteGATTCharacteristic_get_service = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'service'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_get_service, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTCharacteristic_get_uuid = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'uuid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_get_uuid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTCharacteristic_get_properties = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'properties'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_get_properties, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTCharacteristic_get_value = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTCharacteristic_get_oncharacteristicvaluechanged = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncharacteristicvaluechanged'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_get_oncharacteristicvaluechanged, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTCharacteristic_set_oncharacteristicvaluechanged = function (val) { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncharacteristicvaluechanged', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_set_oncharacteristicvaluechanged, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BluetoothRemoteGATTCharacteristic_getDescriptor = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_getDescriptor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_getDescriptors = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_getDescriptors, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_readValue = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_readValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_startNotifications = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_startNotifications, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_stopNotifications = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_stopNotifications, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_writeValue = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_writeValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_writeValueWithResponse = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_writeValueWithResponse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTCharacteristic_writeValueWithoutResponse = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTCharacteristic"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTCharacteristic_writeValueWithoutResponse, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTDescriptor_get_characteristic = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTDescriptor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'characteristic'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTDescriptor_get_characteristic, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTDescriptor_get_uuid = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTDescriptor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'uuid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTDescriptor_get_uuid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTDescriptor_get_value = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTDescriptor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTDescriptor_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTDescriptor_readValue = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTDescriptor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTDescriptor_readValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTDescriptor_writeValue = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTDescriptor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTDescriptor_writeValue, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTServer_get_device = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTServer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'device'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTServer_get_device, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTServer_get_connected = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTServer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connected'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTServer_get_connected, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTServer_connect = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTServer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTServer_connect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTServer_disconnect = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTServer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTServer_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTServer_getPrimaryService = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTServer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTServer_getPrimaryService, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTServer_getPrimaryServices = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTServer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTServer_getPrimaryServices, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTService_get_device = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTService"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'device'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTService_get_device, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTService_get_uuid = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTService"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'uuid'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTService_get_uuid, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTService_get_isPrimary = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTService"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isPrimary'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTService_get_isPrimary, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BluetoothRemoteGATTService_getCharacteristic = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTService"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTService_getCharacteristic, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BluetoothRemoteGATTService_getCharacteristics = function () { let r = cbb_wf.checkIllegal(this, "BluetoothRemoteGATTService"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BluetoothRemoteGATTService_getCharacteristics, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BrowserCaptureMediaStreamTrack_cropTo = function () { let r = cbb_wf.checkIllegal(this, "BrowserCaptureMediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BrowserCaptureMediaStreamTrack_cropTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EyeDropper_open = function () { let r = cbb_wf.checkIllegal(this, "EyeDropper"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "EyeDropper_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_entries = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_getDirectoryHandle = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_getDirectoryHandle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_getFileHandle = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_getFileHandle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_keys = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_removeEntry = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_removeEntry, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_resolve = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_resolve, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemDirectoryHandle_values = function () { let r = cbb_wf.checkIllegal(this, "FileSystemDirectoryHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemDirectoryHandle_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemFileHandle_createWritable = function () { let r = cbb_wf.checkIllegal(this, "FileSystemFileHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemFileHandle_createWritable, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemFileHandle_getFile = function () { let r = cbb_wf.checkIllegal(this, "FileSystemFileHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemFileHandle_getFile, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemFileHandle_move = function () { let r = cbb_wf.checkIllegal(this, "FileSystemFileHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemFileHandle_move, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemHandle_get_kind = function () { let r = cbb_wf.checkIllegal(this, "FileSystemHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'kind'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemHandle_get_kind, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileSystemHandle_get_name = function () { let r = cbb_wf.checkIllegal(this, "FileSystemHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemHandle_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FileSystemHandle_isSameEntry = function () { let r = cbb_wf.checkIllegal(this, "FileSystemHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemHandle_isSameEntry, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemHandle_queryPermission = function () { let r = cbb_wf.checkIllegal(this, "FileSystemHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemHandle_queryPermission, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemHandle_requestPermission = function () { let r = cbb_wf.checkIllegal(this, "FileSystemHandle"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemHandle_requestPermission, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemWritableFileStream_seek = function () { let r = cbb_wf.checkIllegal(this, "FileSystemWritableFileStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemWritableFileStream_seek, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemWritableFileStream_truncate = function () { let r = cbb_wf.checkIllegal(this, "FileSystemWritableFileStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemWritableFileStream_truncate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FileSystemWritableFileStream_write = function () { let r = cbb_wf.checkIllegal(this, "FileSystemWritableFileStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FileSystemWritableFileStream_write, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.FontData_get_postscriptName = function () { let r = cbb_wf.checkIllegal(this, "FontData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'postscriptName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontData_get_postscriptName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontData_get_fullName = function () { let r = cbb_wf.checkIllegal(this, "FontData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fullName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontData_get_fullName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontData_get_family = function () { let r = cbb_wf.checkIllegal(this, "FontData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'family'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontData_get_family, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontData_get_style = function () { let r = cbb_wf.checkIllegal(this, "FontData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontData_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.FontData_blob = function () { let r = cbb_wf.checkIllegal(this, "FontData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "FontData_blob, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HID_get_onconnect = function () { let r = cbb_wf.checkIllegal(this, "HID"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HID_get_onconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HID_set_onconnect = function (val) { let r = cbb_wf.checkIllegal(this, "HID"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HID_set_onconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.HID_get_ondisconnect = function () { let r = cbb_wf.checkIllegal(this, "HID"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondisconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HID_get_ondisconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HID_set_ondisconnect = function (val) { let r = cbb_wf.checkIllegal(this, "HID"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondisconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HID_set_ondisconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.HID_getDevices = function () { let r = cbb_wf.checkIllegal(this, "HID"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HID_getDevices, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HID_requestDevice = function () { let r = cbb_wf.checkIllegal(this, "HID"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HID_requestDevice, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDConnectionEvent_get_device = function () { let r = cbb_wf.checkIllegal(this, "HIDConnectionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'device'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDConnectionEvent_get_device, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_get_oninputreport = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oninputreport'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_get_oninputreport, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_set_oninputreport = function (val) { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oninputreport', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_set_oninputreport, this =>", toString.call(this), ", val => ", '' + val, info); } } this.HIDDevice_get_opened = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'opened'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_get_opened, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_get_vendorId = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vendorId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_get_vendorId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_get_productId = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'productId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_get_productId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_get_productName = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'productName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_get_productName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_get_collections = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'collections'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_get_collections, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDDevice_close = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDDevice_open = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDDevice_receiveFeatureReport = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_receiveFeatureReport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDDevice_sendFeatureReport = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_sendFeatureReport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDDevice_sendReport = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_sendReport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDDevice_forget = function () { let r = cbb_wf.checkIllegal(this, "HIDDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDDevice_forget, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.HIDInputReportEvent_get_device = function () { let r = cbb_wf.checkIllegal(this, "HIDInputReportEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'device'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDInputReportEvent_get_device, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDInputReportEvent_get_reportId = function () { let r = cbb_wf.checkIllegal(this, "HIDInputReportEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reportId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDInputReportEvent_get_reportId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.HIDInputReportEvent_get_data = function () { let r = cbb_wf.checkIllegal(this, "HIDInputReportEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "HIDInputReportEvent_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IdleDetector_get_userState = function () { let r = cbb_wf.checkIllegal(this, "IdleDetector"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDetector_get_userState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IdleDetector_get_screenState = function () { let r = cbb_wf.checkIllegal(this, "IdleDetector"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'screenState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDetector_get_screenState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IdleDetector_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "IdleDetector"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDetector_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IdleDetector_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "IdleDetector"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDetector_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.IdleDetector_start = function () { let r = cbb_wf.checkIllegal(this, "IdleDetector"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "IdleDetector_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.LaunchParams_get_files = function () { let r = cbb_wf.checkIllegal(this, "LaunchParams"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'files'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LaunchParams_get_files, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.LaunchQueue_setConsumer = function () { let r = cbb_wf.checkIllegal(this, "LaunchQueue"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "LaunchQueue_setConsumer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrackGenerator_get_writable = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackGenerator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrackGenerator_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackProcessor_get_readable = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrackProcessor_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.OTPCredential_get_code = function () { let r = cbb_wf.checkIllegal(this, "OTPCredential"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "OTPCredential_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_city = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'city'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_city, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_country = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'country'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_country, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_dependentLocality = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dependentLocality'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_dependentLocality, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_organization = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'organization'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_organization, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_phone = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'phone'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_phone, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_postalCode = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'postalCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_postalCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_recipient = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'recipient'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_recipient, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_region = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'region'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_region, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_sortingCode = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sortingCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_sortingCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_get_addressLine = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'addressLine'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_get_addressLine, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentAddress_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PaymentAddress"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentAddress_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentRequest_get_id = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_get_shippingAddress = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shippingAddress'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_shippingAddress, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_get_shippingOption = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shippingOption'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_shippingOption, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_get_shippingType = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shippingType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_shippingType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_get_onshippingaddresschange = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onshippingaddresschange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_onshippingaddresschange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_set_onshippingaddresschange = function (val) { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onshippingaddresschange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_set_onshippingaddresschange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PaymentRequest_get_onshippingoptionchange = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onshippingoptionchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_onshippingoptionchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_set_onshippingoptionchange = function (val) { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onshippingoptionchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_set_onshippingoptionchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PaymentRequest_abort = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentRequest_canMakePayment = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_canMakePayment, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentRequest_hasEnrolledInstrument = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_hasEnrolledInstrument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentRequest_show = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_show, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentRequest_get_onpaymentmethodchange = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onpaymentmethodchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_get_onpaymentmethodchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentRequest_set_onpaymentmethodchange = function (val) { let r = cbb_wf.checkIllegal(this, "PaymentRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onpaymentmethodchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequest_set_onpaymentmethodchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PaymentResponse_get_requestId = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'requestId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_requestId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_methodName = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'methodName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_methodName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_details = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'details'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_details, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_shippingAddress = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shippingAddress'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_shippingAddress, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_shippingOption = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'shippingOption'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_shippingOption, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_payerName = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'payerName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_payerName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_payerEmail = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'payerEmail'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_payerEmail, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_get_payerPhone = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'payerPhone'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_payerPhone, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_complete = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_complete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentResponse_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentResponse_get_onpayerdetailchange = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onpayerdetailchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_get_onpayerdetailchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentResponse_set_onpayerdetailchange = function (val) { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onpayerdetailchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_set_onpayerdetailchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PaymentResponse_retry = function () { let r = cbb_wf.checkIllegal(this, "PaymentResponse"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentResponse_retry, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentMethodChangeEvent_get_methodName = function () { let r = cbb_wf.checkIllegal(this, "PaymentMethodChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'methodName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentMethodChangeEvent_get_methodName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentMethodChangeEvent_get_methodDetails = function () { let r = cbb_wf.checkIllegal(this, "PaymentMethodChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'methodDetails'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentMethodChangeEvent_get_methodDetails, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Presentation_get_defaultRequest = function () { let r = cbb_wf.checkIllegal(this, "Presentation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'defaultRequest'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Presentation_get_defaultRequest, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Presentation_set_defaultRequest = function (val) { let r = cbb_wf.checkIllegal(this, "Presentation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'defaultRequest', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Presentation_set_defaultRequest, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Presentation_get_receiver = function () { let r = cbb_wf.checkIllegal(this, "Presentation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'receiver'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Presentation_get_receiver, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationAvailability_get_value = function () { let r = cbb_wf.checkIllegal(this, "PresentationAvailability"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'value'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationAvailability_get_value, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationAvailability_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "PresentationAvailability"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationAvailability_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationAvailability_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationAvailability"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationAvailability_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationConnection_get_id = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_get_url = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_get_state = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_get_onconnect = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_onconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_set_onconnect = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_set_onconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationConnection_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_onclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_set_onclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationConnection_get_onterminate = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onterminate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_onterminate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_set_onterminate = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onterminate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_set_onterminate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationConnection_get_binaryType = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'binaryType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_binaryType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_set_binaryType = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'binaryType', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_set_binaryType, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationConnection_get_onmessage = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmessage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_get_onmessage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnection_set_onmessage = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmessage', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_set_onmessage, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationConnection_close = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PresentationConnection_send = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_send, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PresentationConnection_terminate = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnection"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnection_terminate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PresentationConnectionAvailableEvent_get_connection = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnectionAvailableEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connection'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnectionAvailableEvent_get_connection, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnectionCloseEvent_get_reason = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnectionCloseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reason'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnectionCloseEvent_get_reason, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnectionCloseEvent_get_message = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnectionCloseEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnectionCloseEvent_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnectionList_get_connections = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnectionList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connections'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnectionList_get_connections, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnectionList_get_onconnectionavailable = function () { let r = cbb_wf.checkIllegal(this, "PresentationConnectionList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnectionavailable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnectionList_get_onconnectionavailable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationConnectionList_set_onconnectionavailable = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationConnectionList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnectionavailable', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationConnectionList_set_onconnectionavailable, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationReceiver_get_connectionList = function () { let r = cbb_wf.checkIllegal(this, "PresentationReceiver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'connectionList'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationReceiver_get_connectionList, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationRequest_get_onconnectionavailable = function () { let r = cbb_wf.checkIllegal(this, "PresentationRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnectionavailable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationRequest_get_onconnectionavailable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PresentationRequest_set_onconnectionavailable = function (val) { let r = cbb_wf.checkIllegal(this, "PresentationRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnectionavailable', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationRequest_set_onconnectionavailable, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PresentationRequest_getAvailability = function () { let r = cbb_wf.checkIllegal(this, "PresentationRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationRequest_getAvailability, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PresentationRequest_reconnect = function () { let r = cbb_wf.checkIllegal(this, "PresentationRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationRequest_reconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PresentationRequest_start = function () { let r = cbb_wf.checkIllegal(this, "PresentationRequest"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PresentationRequest_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Profiler_get_sampleInterval = function () { let r = cbb_wf.checkIllegal(this, "Profiler"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sampleInterval'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Profiler_get_sampleInterval, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Profiler_get_stopped = function () { let r = cbb_wf.checkIllegal(this, "Profiler"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'stopped'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Profiler_get_stopped, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Profiler_stop = function () { let r = cbb_wf.checkIllegal(this, "Profiler"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Profiler_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ScreenDetailed_get_left = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetailed"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'left'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetailed_get_left, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetailed_get_top = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetailed"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'top'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetailed_get_top, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetailed_get_isPrimary = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetailed"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isPrimary'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetailed_get_isPrimary, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetailed_get_isInternal = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetailed"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isInternal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetailed_get_isInternal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetailed_get_devicePixelRatio = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetailed"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'devicePixelRatio'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetailed_get_devicePixelRatio, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetailed_get_label = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetailed"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'label'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetailed_get_label, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetails_get_screens = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'screens'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetails_get_screens, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetails_get_currentScreen = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentScreen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetails_get_currentScreen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetails_get_onscreenschange = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onscreenschange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetails_get_onscreenschange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetails_set_onscreenschange = function (val) { let r = cbb_wf.checkIllegal(this, "ScreenDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onscreenschange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetails_set_onscreenschange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.ScreenDetails_get_oncurrentscreenchange = function () { let r = cbb_wf.checkIllegal(this, "ScreenDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncurrentscreenchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetails_get_oncurrentscreenchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ScreenDetails_set_oncurrentscreenchange = function (val) { let r = cbb_wf.checkIllegal(this, "ScreenDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncurrentscreenchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "ScreenDetails_set_oncurrentscreenchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Serial_get_onconnect = function () { let r = cbb_wf.checkIllegal(this, "Serial"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Serial_get_onconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Serial_set_onconnect = function (val) { let r = cbb_wf.checkIllegal(this, "Serial"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Serial_set_onconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Serial_get_ondisconnect = function () { let r = cbb_wf.checkIllegal(this, "Serial"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondisconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Serial_get_ondisconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Serial_set_ondisconnect = function (val) { let r = cbb_wf.checkIllegal(this, "Serial"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondisconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Serial_set_ondisconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Serial_getPorts = function () { let r = cbb_wf.checkIllegal(this, "Serial"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Serial_getPorts, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Serial_requestPort = function () { let r = cbb_wf.checkIllegal(this, "Serial"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Serial_requestPort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SerialPort_get_onconnect = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_get_onconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SerialPort_set_onconnect = function (val) { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_set_onconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SerialPort_get_ondisconnect = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondisconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_get_ondisconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SerialPort_set_ondisconnect = function (val) { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondisconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_set_ondisconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SerialPort_get_readable = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SerialPort_get_writable = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SerialPort_close = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SerialPort_getInfo = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_getInfo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SerialPort_getSignals = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_getSignals, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SerialPort_open = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SerialPort_setSignals = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_setSignals, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SerialPort_forget = function () { let r = cbb_wf.checkIllegal(this, "SerialPort"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SerialPort_forget, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USB_get_onconnect = function () { let r = cbb_wf.checkIllegal(this, "USB"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USB_get_onconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USB_set_onconnect = function (val) { let r = cbb_wf.checkIllegal(this, "USB"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USB_set_onconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.USB_get_ondisconnect = function () { let r = cbb_wf.checkIllegal(this, "USB"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondisconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USB_get_ondisconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USB_set_ondisconnect = function (val) { let r = cbb_wf.checkIllegal(this, "USB"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondisconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USB_set_ondisconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.USB_getDevices = function () { let r = cbb_wf.checkIllegal(this, "USB"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USB_getDevices, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USB_requestDevice = function () { let r = cbb_wf.checkIllegal(this, "USB"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USB_requestDevice, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBAlternateInterface_get_alternateSetting = function () { let r = cbb_wf.checkIllegal(this, "USBAlternateInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'alternateSetting'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBAlternateInterface_get_alternateSetting, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBAlternateInterface_get_interfaceClass = function () { let r = cbb_wf.checkIllegal(this, "USBAlternateInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interfaceClass'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBAlternateInterface_get_interfaceClass, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBAlternateInterface_get_interfaceSubclass = function () { let r = cbb_wf.checkIllegal(this, "USBAlternateInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interfaceSubclass'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBAlternateInterface_get_interfaceSubclass, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBAlternateInterface_get_interfaceProtocol = function () { let r = cbb_wf.checkIllegal(this, "USBAlternateInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interfaceProtocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBAlternateInterface_get_interfaceProtocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBAlternateInterface_get_interfaceName = function () { let r = cbb_wf.checkIllegal(this, "USBAlternateInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interfaceName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBAlternateInterface_get_interfaceName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBAlternateInterface_get_endpoints = function () { let r = cbb_wf.checkIllegal(this, "USBAlternateInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'endpoints'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBAlternateInterface_get_endpoints, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBConfiguration_get_configurationValue = function () { let r = cbb_wf.checkIllegal(this, "USBConfiguration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'configurationValue'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBConfiguration_get_configurationValue, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBConfiguration_get_configurationName = function () { let r = cbb_wf.checkIllegal(this, "USBConfiguration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'configurationName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBConfiguration_get_configurationName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBConfiguration_get_interfaces = function () { let r = cbb_wf.checkIllegal(this, "USBConfiguration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interfaces'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBConfiguration_get_interfaces, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBConnectionEvent_get_device = function () { let r = cbb_wf.checkIllegal(this, "USBConnectionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'device'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBConnectionEvent_get_device, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_usbVersionMajor = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'usbVersionMajor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_usbVersionMajor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_usbVersionMinor = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'usbVersionMinor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_usbVersionMinor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_usbVersionSubminor = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'usbVersionSubminor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_usbVersionSubminor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_deviceClass = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceClass'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_deviceClass, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_deviceSubclass = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceSubclass'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_deviceSubclass, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_deviceProtocol = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceProtocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_deviceProtocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_vendorId = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vendorId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_vendorId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_productId = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'productId'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_productId, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_deviceVersionMajor = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceVersionMajor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_deviceVersionMajor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_deviceVersionMinor = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceVersionMinor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_deviceVersionMinor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_deviceVersionSubminor = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deviceVersionSubminor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_deviceVersionSubminor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_manufacturerName = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'manufacturerName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_manufacturerName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_productName = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'productName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_productName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_serialNumber = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'serialNumber'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_serialNumber, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_configuration = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'configuration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_configuration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_configurations = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'configurations'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_configurations, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_get_opened = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'opened'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_get_opened, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBDevice_claimInterface = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_claimInterface, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_clearHalt = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_clearHalt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_close = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_controlTransferIn = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_controlTransferIn, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_controlTransferOut = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_controlTransferOut, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_isochronousTransferIn = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_isochronousTransferIn, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_isochronousTransferOut = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_isochronousTransferOut, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_open = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_releaseInterface = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_releaseInterface, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_reset = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_selectAlternateInterface = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_selectAlternateInterface, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_selectConfiguration = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_selectConfiguration, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_transferIn = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_transferIn, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_transferOut = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_transferOut, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBDevice_forget = function () { let r = cbb_wf.checkIllegal(this, "USBDevice"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBDevice_forget, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.USBEndpoint_get_endpointNumber = function () { let r = cbb_wf.checkIllegal(this, "USBEndpoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'endpointNumber'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBEndpoint_get_endpointNumber, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBEndpoint_get_direction = function () { let r = cbb_wf.checkIllegal(this, "USBEndpoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'direction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBEndpoint_get_direction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBEndpoint_get_type = function () { let r = cbb_wf.checkIllegal(this, "USBEndpoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBEndpoint_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBEndpoint_get_packetSize = function () { let r = cbb_wf.checkIllegal(this, "USBEndpoint"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'packetSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBEndpoint_get_packetSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBInTransferResult_get_data = function () { let r = cbb_wf.checkIllegal(this, "USBInTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBInTransferResult_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBInTransferResult_get_status = function () { let r = cbb_wf.checkIllegal(this, "USBInTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBInTransferResult_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBInterface_get_interfaceNumber = function () { let r = cbb_wf.checkIllegal(this, "USBInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interfaceNumber'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBInterface_get_interfaceNumber, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBInterface_get_alternate = function () { let r = cbb_wf.checkIllegal(this, "USBInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'alternate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBInterface_get_alternate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBInterface_get_alternates = function () { let r = cbb_wf.checkIllegal(this, "USBInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'alternates'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBInterface_get_alternates, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBInterface_get_claimed = function () { let r = cbb_wf.checkIllegal(this, "USBInterface"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'claimed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBInterface_get_claimed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousInTransferPacket_get_status = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousInTransferPacket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousInTransferPacket_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousInTransferPacket_get_data = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousInTransferPacket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousInTransferPacket_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousInTransferResult_get_data = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousInTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousInTransferResult_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousInTransferResult_get_packets = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousInTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'packets'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousInTransferResult_get_packets, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousOutTransferPacket_get_bytesWritten = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousOutTransferPacket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bytesWritten'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousOutTransferPacket_get_bytesWritten, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousOutTransferPacket_get_status = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousOutTransferPacket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousOutTransferPacket_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBIsochronousOutTransferResult_get_packets = function () { let r = cbb_wf.checkIllegal(this, "USBIsochronousOutTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'packets'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBIsochronousOutTransferResult_get_packets, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBOutTransferResult_get_bytesWritten = function () { let r = cbb_wf.checkIllegal(this, "USBOutTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bytesWritten'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBOutTransferResult_get_bytesWritten, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.USBOutTransferResult_get_status = function () { let r = cbb_wf.checkIllegal(this, "USBOutTransferResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'status'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "USBOutTransferResult_get_status, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VirtualKeyboard_get_boundingRect = function () { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'boundingRect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_get_boundingRect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VirtualKeyboard_get_overlaysContent = function () { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'overlaysContent'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_get_overlaysContent, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VirtualKeyboard_set_overlaysContent = function (val) { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'overlaysContent', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_set_overlaysContent, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VirtualKeyboard_get_ongeometrychange = function () { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ongeometrychange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_get_ongeometrychange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VirtualKeyboard_set_ongeometrychange = function (val) { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ongeometrychange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_set_ongeometrychange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.VirtualKeyboard_hide = function () { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_hide, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VirtualKeyboard_show = function () { let r = cbb_wf.checkIllegal(this, "VirtualKeyboard"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VirtualKeyboard_show, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WakeLock_request = function () { let r = cbb_wf.checkIllegal(this, "WakeLock"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WakeLock_request, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WakeLockSentinel_get_onrelease = function () { let r = cbb_wf.checkIllegal(this, "WakeLockSentinel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onrelease'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WakeLockSentinel_get_onrelease, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WakeLockSentinel_set_onrelease = function (val) { let r = cbb_wf.checkIllegal(this, "WakeLockSentinel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onrelease', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WakeLockSentinel_set_onrelease, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WakeLockSentinel_get_released = function () { let r = cbb_wf.checkIllegal(this, "WakeLockSentinel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'released'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WakeLockSentinel_get_released, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WakeLockSentinel_get_type = function () { let r = cbb_wf.checkIllegal(this, "WakeLockSentinel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'type'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WakeLockSentinel_get_type, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WakeLockSentinel_release = function () { let r = cbb_wf.checkIllegal(this, "WakeLockSentinel"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WakeLockSentinel_release, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebTransport_get_incomingUnidirectionalStreams = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'incomingUnidirectionalStreams'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_get_incomingUnidirectionalStreams, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransport_get_incomingBidirectionalStreams = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'incomingBidirectionalStreams'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_get_incomingBidirectionalStreams, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransport_get_datagrams = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'datagrams'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_get_datagrams, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransport_get_ready = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ready'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_get_ready, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransport_get_closed = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_get_closed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransport_close = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebTransport_createBidirectionalStream = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_createBidirectionalStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebTransport_createUnidirectionalStream = function () { let r = cbb_wf.checkIllegal(this, "WebTransport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransport_createUnidirectionalStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebTransportBidirectionalStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "WebTransportBidirectionalStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportBidirectionalStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportBidirectionalStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "WebTransportBidirectionalStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportBidirectionalStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_get_readable = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_readable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_get_writable = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'writable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_writable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_get_maxDatagramSize = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxDatagramSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_maxDatagramSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_get_incomingMaxAge = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'incomingMaxAge'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_incomingMaxAge, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_set_incomingMaxAge = function (val) { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'incomingMaxAge', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_set_incomingMaxAge, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebTransportDatagramDuplexStream_get_outgoingMaxAge = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'outgoingMaxAge'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_outgoingMaxAge, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_set_outgoingMaxAge = function (val) { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'outgoingMaxAge', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_set_outgoingMaxAge, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebTransportDatagramDuplexStream_get_incomingHighWaterMark = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'incomingHighWaterMark'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_incomingHighWaterMark, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_set_incomingHighWaterMark = function (val) { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'incomingHighWaterMark', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_set_incomingHighWaterMark, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebTransportDatagramDuplexStream_get_outgoingHighWaterMark = function () { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'outgoingHighWaterMark'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_get_outgoingHighWaterMark, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportDatagramDuplexStream_set_outgoingHighWaterMark = function (val) { let r = cbb_wf.checkIllegal(this, "WebTransportDatagramDuplexStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'outgoingHighWaterMark', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportDatagramDuplexStream_set_outgoingHighWaterMark, this =>", toString.call(this), ", val => ", '' + val, info); } } this.WebTransportError_get_streamErrorCode = function () { let r = cbb_wf.checkIllegal(this, "WebTransportError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'streamErrorCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportError_get_streamErrorCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebTransportError_get_source = function () { let r = cbb_wf.checkIllegal(this, "WebTransportError"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'source'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "WebTransportError_get_source, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRAnchor_get_anchorSpace = function () { let r = cbb_wf.checkIllegal(this, "XRAnchor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'anchorSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchor_get_anchorSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRAnchor_delete = function () { let r = cbb_wf.checkIllegal(this, "XRAnchor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchor_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRAnchorSet_get_size = function () { let r = cbb_wf.checkIllegal(this, "XRAnchorSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchorSet_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRAnchorSet_entries = function () { let r = cbb_wf.checkIllegal(this, "XRAnchorSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchorSet_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRAnchorSet_forEach = function () { let r = cbb_wf.checkIllegal(this, "XRAnchorSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchorSet_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRAnchorSet_has = function () { let r = cbb_wf.checkIllegal(this, "XRAnchorSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchorSet_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRAnchorSet_keys = function () { let r = cbb_wf.checkIllegal(this, "XRAnchorSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchorSet_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRAnchorSet_values = function () { let r = cbb_wf.checkIllegal(this, "XRAnchorSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRAnchorSet_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRBoundedReferenceSpace_get_boundsGeometry = function () { let r = cbb_wf.checkIllegal(this, "XRBoundedReferenceSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'boundsGeometry'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRBoundedReferenceSpace_get_boundsGeometry, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRFrame_get_session = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'session'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_get_session, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRFrame_getPose = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_getPose, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRFrame_getViewerPose = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_getViewerPose, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRFrame_get_trackedAnchors = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'trackedAnchors'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_get_trackedAnchors, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRFrame_createAnchor = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_createAnchor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRFrame_getHitTestResults = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_getHitTestResults, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRFrame_getHitTestResultsForTransientInput = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_getHitTestResultsForTransientInput, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRFrame_getLightEstimate = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_getLightEstimate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRFrame_getDepthInformation = function () { let r = cbb_wf.checkIllegal(this, "XRFrame"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRFrame_getDepthInformation, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRInputSource_get_handedness = function () { let r = cbb_wf.checkIllegal(this, "XRInputSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'handedness'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSource_get_handedness, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSource_get_targetRayMode = function () { let r = cbb_wf.checkIllegal(this, "XRInputSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'targetRayMode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSource_get_targetRayMode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSource_get_targetRaySpace = function () { let r = cbb_wf.checkIllegal(this, "XRInputSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'targetRaySpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSource_get_targetRaySpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSource_get_gripSpace = function () { let r = cbb_wf.checkIllegal(this, "XRInputSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gripSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSource_get_gripSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSource_get_gamepad = function () { let r = cbb_wf.checkIllegal(this, "XRInputSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'gamepad'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSource_get_gamepad, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSource_get_profiles = function () { let r = cbb_wf.checkIllegal(this, "XRInputSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'profiles'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSource_get_profiles, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSourceArray_entries = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceArray_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRInputSourceArray_keys = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceArray_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRInputSourceArray_values = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceArray_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRInputSourceArray_forEach = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceArray_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRInputSourceArray_get_length = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceArray"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceArray_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSourceEvent_get_frame = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'frame'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceEvent_get_frame, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSourceEvent_get_inputSource = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourceEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inputSource'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourceEvent_get_inputSource, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSourcesChangeEvent_get_session = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourcesChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'session'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourcesChangeEvent_get_session, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSourcesChangeEvent_get_added = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourcesChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'added'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourcesChangeEvent_get_added, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRInputSourcesChangeEvent_get_removed = function () { let r = cbb_wf.checkIllegal(this, "XRInputSourcesChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'removed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRInputSourcesChangeEvent_get_removed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRPose_get_transform = function () { let r = cbb_wf.checkIllegal(this, "XRPose"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transform'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRPose_get_transform, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRPose_get_emulatedPosition = function () { let r = cbb_wf.checkIllegal(this, "XRPose"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'emulatedPosition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRPose_get_emulatedPosition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRReferenceSpace_get_onreset = function () { let r = cbb_wf.checkIllegal(this, "XRReferenceSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onreset'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRReferenceSpace_get_onreset, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRReferenceSpace_set_onreset = function (val) { let r = cbb_wf.checkIllegal(this, "XRReferenceSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onreset', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRReferenceSpace_set_onreset, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRReferenceSpace_getOffsetReferenceSpace = function () { let r = cbb_wf.checkIllegal(this, "XRReferenceSpace"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRReferenceSpace_getOffsetReferenceSpace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRReferenceSpaceEvent_get_referenceSpace = function () { let r = cbb_wf.checkIllegal(this, "XRReferenceSpaceEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'referenceSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRReferenceSpaceEvent_get_referenceSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRReferenceSpaceEvent_get_transform = function () { let r = cbb_wf.checkIllegal(this, "XRReferenceSpaceEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transform'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRReferenceSpaceEvent_get_transform, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRenderState_get_depthNear = function () { let r = cbb_wf.checkIllegal(this, "XRRenderState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'depthNear'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRenderState_get_depthNear, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRenderState_get_depthFar = function () { let r = cbb_wf.checkIllegal(this, "XRRenderState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'depthFar'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRenderState_get_depthFar, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRenderState_get_inlineVerticalFieldOfView = function () { let r = cbb_wf.checkIllegal(this, "XRRenderState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inlineVerticalFieldOfView'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRenderState_get_inlineVerticalFieldOfView, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRenderState_get_baseLayer = function () { let r = cbb_wf.checkIllegal(this, "XRRenderState"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'baseLayer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRenderState_get_baseLayer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRigidTransform_get_position = function () { let r = cbb_wf.checkIllegal(this, "XRRigidTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'position'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRigidTransform_get_position, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRigidTransform_get_orientation = function () { let r = cbb_wf.checkIllegal(this, "XRRigidTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'orientation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRigidTransform_get_orientation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRigidTransform_get_matrix = function () { let r = cbb_wf.checkIllegal(this, "XRRigidTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matrix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRigidTransform_get_matrix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRigidTransform_get_inverse = function () { let r = cbb_wf.checkIllegal(this, "XRRigidTransform"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inverse'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRigidTransform_get_inverse, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_visibilityState = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'visibilityState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_visibilityState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_renderState = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'renderState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_renderState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_inputSources = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inputSources'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_inputSources, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_domOverlayState = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'domOverlayState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_domOverlayState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_onend = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onend = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onselect = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onselect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onselect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onselect = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onselect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onselect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_oninputsourceschange = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oninputsourceschange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_oninputsourceschange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_oninputsourceschange = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oninputsourceschange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_oninputsourceschange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onselectstart = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onselectstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onselectstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onselectstart = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onselectstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onselectstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onselectend = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onselectend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onselectend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onselectend = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onselectend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onselectend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onvisibilitychange = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onvisibilitychange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onvisibilitychange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onvisibilitychange = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onvisibilitychange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onvisibilitychange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onsqueeze = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsqueeze'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onsqueeze, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onsqueeze = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsqueeze', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onsqueeze, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onsqueezestart = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsqueezestart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onsqueezestart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onsqueezestart = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsqueezestart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onsqueezestart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_get_onsqueezeend = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsqueezeend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_onsqueezeend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_set_onsqueezeend = function (val) { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsqueezeend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_set_onsqueezeend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSession_cancelAnimationFrame = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_cancelAnimationFrame, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_end = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_end, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_requestAnimationFrame = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_requestAnimationFrame, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_requestReferenceSpace = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_requestReferenceSpace, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_updateRenderState = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_updateRenderState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_get_environmentBlendMode = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'environmentBlendMode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_environmentBlendMode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_interactionMode = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interactionMode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_interactionMode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_preferredReflectionFormat = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'preferredReflectionFormat'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_preferredReflectionFormat, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_requestHitTestSource = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_requestHitTestSource, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_requestHitTestSourceForTransientInput = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_requestHitTestSourceForTransientInput, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_requestLightProbe = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_requestLightProbe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSession_get_depthUsage = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'depthUsage'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_depthUsage, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSession_get_depthDataFormat = function () { let r = cbb_wf.checkIllegal(this, "XRSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'depthDataFormat'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSession_get_depthDataFormat, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSessionEvent_get_session = function () { let r = cbb_wf.checkIllegal(this, "XRSessionEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'session'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSessionEvent_get_session, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSystem_get_ondevicechange = function () { let r = cbb_wf.checkIllegal(this, "XRSystem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondevicechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSystem_get_ondevicechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRSystem_set_ondevicechange = function (val) { let r = cbb_wf.checkIllegal(this, "XRSystem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondevicechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSystem_set_ondevicechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.XRSystem_isSessionSupported = function () { let r = cbb_wf.checkIllegal(this, "XRSystem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSystem_isSessionSupported, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSystem_requestSession = function () { let r = cbb_wf.checkIllegal(this, "XRSystem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSystem_requestSession, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRSystem_supportsSession = function () { let r = cbb_wf.checkIllegal(this, "XRSystem"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRSystem_supportsSession, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRView_get_eye = function () { let r = cbb_wf.checkIllegal(this, "XRView"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'eye'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRView_get_eye, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRView_get_projectionMatrix = function () { let r = cbb_wf.checkIllegal(this, "XRView"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'projectionMatrix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRView_get_projectionMatrix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRView_get_transform = function () { let r = cbb_wf.checkIllegal(this, "XRView"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transform'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRView_get_transform, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRView_get_isFirstPersonObserver = function () { let r = cbb_wf.checkIllegal(this, "XRView"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'isFirstPersonObserver'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRView_get_isFirstPersonObserver, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRView_get_recommendedViewportScale = function () { let r = cbb_wf.checkIllegal(this, "XRView"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'recommendedViewportScale'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRView_get_recommendedViewportScale, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRView_requestViewportScale = function () { let r = cbb_wf.checkIllegal(this, "XRView"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRView_requestViewportScale, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRViewerPose_get_views = function () { let r = cbb_wf.checkIllegal(this, "XRViewerPose"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'views'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRViewerPose_get_views, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRViewport_get_x = function () { let r = cbb_wf.checkIllegal(this, "XRViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'x'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRViewport_get_x, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRViewport_get_y = function () { let r = cbb_wf.checkIllegal(this, "XRViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'y'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRViewport_get_y, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRViewport_get_width = function () { let r = cbb_wf.checkIllegal(this, "XRViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRViewport_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRViewport_get_height = function () { let r = cbb_wf.checkIllegal(this, "XRViewport"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRViewport_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLLayer_get_antialias = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLLayer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'antialias'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLLayer_get_antialias, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLLayer_get_ignoreDepthValues = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLLayer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ignoreDepthValues'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLLayer_get_ignoreDepthValues, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLLayer_get_framebufferWidth = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLLayer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'framebufferWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLLayer_get_framebufferWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLLayer_get_framebufferHeight = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLLayer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'framebufferHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLLayer_get_framebufferHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLLayer_get_framebuffer = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLLayer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'framebuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLLayer_get_framebuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLLayer_getViewport = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLLayer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLLayer_getViewport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRCPUDepthInformation_get_data = function () { let r = cbb_wf.checkIllegal(this, "XRCPUDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRCPUDepthInformation_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRCPUDepthInformation_getDepthInMeters = function () { let r = cbb_wf.checkIllegal(this, "XRCPUDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRCPUDepthInformation_getDepthInMeters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRDepthInformation_get_width = function () { let r = cbb_wf.checkIllegal(this, "XRDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRDepthInformation_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRDepthInformation_get_height = function () { let r = cbb_wf.checkIllegal(this, "XRDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRDepthInformation_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRDepthInformation_get_normDepthBufferFromNormView = function () { let r = cbb_wf.checkIllegal(this, "XRDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'normDepthBufferFromNormView'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRDepthInformation_get_normDepthBufferFromNormView, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRDepthInformation_get_rawValueToMeters = function () { let r = cbb_wf.checkIllegal(this, "XRDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rawValueToMeters'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRDepthInformation_get_rawValueToMeters, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRWebGLDepthInformation_get_texture = function () { let r = cbb_wf.checkIllegal(this, "XRWebGLDepthInformation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'texture'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRWebGLDepthInformation_get_texture, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRHitTestResult_getPose = function () { let r = cbb_wf.checkIllegal(this, "XRHitTestResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRHitTestResult_getPose, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHitTestResult_createAnchor = function () { let r = cbb_wf.checkIllegal(this, "XRHitTestResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRHitTestResult_createAnchor, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHitTestSource_cancel = function () { let r = cbb_wf.checkIllegal(this, "XRHitTestSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRHitTestSource_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRRay_get_origin = function () { let r = cbb_wf.checkIllegal(this, "XRRay"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'origin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRay_get_origin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRay_get_direction = function () { let r = cbb_wf.checkIllegal(this, "XRRay"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'direction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRay_get_direction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRRay_get_matrix = function () { let r = cbb_wf.checkIllegal(this, "XRRay"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'matrix'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRRay_get_matrix, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRTransientInputHitTestResult_get_inputSource = function () { let r = cbb_wf.checkIllegal(this, "XRTransientInputHitTestResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inputSource'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRTransientInputHitTestResult_get_inputSource, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRTransientInputHitTestResult_get_results = function () { let r = cbb_wf.checkIllegal(this, "XRTransientInputHitTestResult"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'results'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRTransientInputHitTestResult_get_results, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRTransientInputHitTestSource_cancel = function () { let r = cbb_wf.checkIllegal(this, "XRTransientInputHitTestSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRTransientInputHitTestSource_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRLightEstimate_get_sphericalHarmonicsCoefficients = function () { let r = cbb_wf.checkIllegal(this, "XRLightEstimate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sphericalHarmonicsCoefficients'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRLightEstimate_get_sphericalHarmonicsCoefficients, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRLightEstimate_get_primaryLightDirection = function () { let r = cbb_wf.checkIllegal(this, "XRLightEstimate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'primaryLightDirection'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRLightEstimate_get_primaryLightDirection, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRLightEstimate_get_primaryLightIntensity = function () { let r = cbb_wf.checkIllegal(this, "XRLightEstimate"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'primaryLightIntensity'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRLightEstimate_get_primaryLightIntensity, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRLightProbe_get_probeSpace = function () { let r = cbb_wf.checkIllegal(this, "XRLightProbe"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'probeSpace'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRLightProbe_get_probeSpace, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRLightProbe_get_onreflectionchange = function () { let r = cbb_wf.checkIllegal(this, "XRLightProbe"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onreflectionchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRLightProbe_get_onreflectionchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRLightProbe_set_onreflectionchange = function (val) { let r = cbb_wf.checkIllegal(this, "XRLightProbe"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onreflectionchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XRLightProbe_set_onreflectionchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.AnimationPlaybackEvent_get_currentTime = function () { let r = cbb_wf.checkIllegal(this, "AnimationPlaybackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationPlaybackEvent_get_currentTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnimationPlaybackEvent_get_timelineTime = function () { let r = cbb_wf.checkIllegal(this, "AnimationPlaybackEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timelineTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationPlaybackEvent_get_timelineTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.AnimationTimeline_get_currentTime = function () { let r = cbb_wf.checkIllegal(this, "AnimationTimeline"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "AnimationTimeline_get_currentTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSAnimation_get_animationName = function () { let r = cbb_wf.checkIllegal(this, "CSSAnimation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'animationName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSAnimation_get_animationName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSTransition_get_transitionProperty = function () { let r = cbb_wf.checkIllegal(this, "CSSTransition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transitionProperty'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSTransition_get_transitionProperty, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchManager_fetch = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchManager_fetch, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BackgroundFetchManager_get = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchManager_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BackgroundFetchManager_getIds = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchManager_getIds, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BackgroundFetchRecord_get_request = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'request'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRecord_get_request, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRecord_get_responseReady = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'responseReady'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRecord_get_responseReady, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_id = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_uploadTotal = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'uploadTotal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_uploadTotal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_uploaded = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'uploaded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_uploaded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_downloadTotal = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'downloadTotal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_downloadTotal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_downloaded = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'downloaded'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_downloaded, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_result = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'result'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_result, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_failureReason = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'failureReason'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_failureReason, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_recordsAvailable = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'recordsAvailable'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_recordsAvailable, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_get_onprogress = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onprogress'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_get_onprogress, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.BackgroundFetchRegistration_set_onprogress = function (val) { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onprogress', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_set_onprogress, this =>", toString.call(this), ", val => ", '' + val, info); } } this.BackgroundFetchRegistration_abort = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BackgroundFetchRegistration_match = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_match, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.BackgroundFetchRegistration_matchAll = function () { let r = cbb_wf.checkIllegal(this, "BackgroundFetchRegistration"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "BackgroundFetchRegistration_matchAll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CSSFontPaletteValuesRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSFontPaletteValuesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSFontPaletteValuesRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSFontPaletteValuesRule_get_fontFamily = function () { let r = cbb_wf.checkIllegal(this, "CSSFontPaletteValuesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'fontFamily'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSFontPaletteValuesRule_get_fontFamily, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSFontPaletteValuesRule_get_basePalette = function () { let r = cbb_wf.checkIllegal(this, "CSSFontPaletteValuesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'basePalette'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSFontPaletteValuesRule_get_basePalette, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSFontPaletteValuesRule_get_overrideColors = function () { let r = cbb_wf.checkIllegal(this, "CSSFontPaletteValuesRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'overrideColors'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CSSFontPaletteValuesRule_get_overrideColors, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CustomStateSet_get_size = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CustomStateSet_add = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_clear = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_delete = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_entries = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_forEach = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_has = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_keys = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CustomStateSet_values = function () { let r = cbb_wf.checkIllegal(this, "CustomStateSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "CustomStateSet_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.DelegatedInkTrailPresenter_get_presentationArea = function () { let r = cbb_wf.checkIllegal(this, "DelegatedInkTrailPresenter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'presentationArea'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DelegatedInkTrailPresenter_get_presentationArea, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DelegatedInkTrailPresenter_get_expectedImprovement = function () { let r = cbb_wf.checkIllegal(this, "DelegatedInkTrailPresenter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'expectedImprovement'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DelegatedInkTrailPresenter_get_expectedImprovement, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.DelegatedInkTrailPresenter_updateInkTrailStartPoint = function () { let r = cbb_wf.checkIllegal(this, "DelegatedInkTrailPresenter"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "DelegatedInkTrailPresenter_updateInkTrailStartPoint, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Ink_requestPresenter = function () { let r = cbb_wf.checkIllegal(this, "Ink"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Ink_requestPresenter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaMetadata_get_title = function () { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'title'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_get_title, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaMetadata_set_title = function (val) { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'title', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_set_title, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaMetadata_get_artist = function () { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'artist'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_get_artist, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaMetadata_set_artist = function (val) { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'artist', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_set_artist, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaMetadata_get_album = function () { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'album'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_get_album, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaMetadata_set_album = function (val) { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'album', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_set_album, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaMetadata_get_artwork = function () { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'artwork'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_get_artwork, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaMetadata_set_artwork = function (val) { let r = cbb_wf.checkIllegal(this, "MediaMetadata"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'artwork', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaMetadata_set_artwork, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSession_get_metadata = function () { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'metadata'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_get_metadata, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSession_set_metadata = function (val) { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'metadata', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_set_metadata, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSession_get_playbackState = function () { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'playbackState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_get_playbackState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSession_set_playbackState = function (val) { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'playbackState', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_set_playbackState, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSession_setActionHandler = function () { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_setActionHandler, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSession_setCameraActive = function () { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_setCameraActive, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSession_setMicrophoneActive = function () { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_setMicrophoneActive, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSession_setPositionState = function () { let r = cbb_wf.checkIllegal(this, "MediaSession"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSession_setPositionState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSource_get_sourceBuffers = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sourceBuffers'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_sourceBuffers, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_get_activeSourceBuffers = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'activeSourceBuffers'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_activeSourceBuffers, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_get_duration = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'duration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_duration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_set_duration = function (val) { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'duration', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_set_duration, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSource_get_onsourceopen = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsourceopen'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_onsourceopen, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_set_onsourceopen = function (val) { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsourceopen', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_set_onsourceopen, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSource_get_onsourceended = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsourceended'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_onsourceended, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_set_onsourceended = function (val) { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsourceended', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_set_onsourceended, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSource_get_onsourceclose = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsourceclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_onsourceclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_set_onsourceclose = function (val) { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsourceclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_set_onsourceclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaSource_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaSource_addSourceBuffer = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_addSourceBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSource_clearLiveSeekableRange = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_clearLiveSeekableRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSource_endOfStream = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_endOfStream, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSource_removeSourceBuffer = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_removeSourceBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaSource_setLiveSeekableRange = function () { let r = cbb_wf.checkIllegal(this, "MediaSource"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaSource_setLiveSeekableRange, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SourceBuffer_get_mode = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_mode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_mode = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'mode', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_mode, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_updating = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'updating'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_updating, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_get_buffered = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'buffered'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_buffered, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_get_timestampOffset = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestampOffset'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_timestampOffset, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_timestampOffset = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'timestampOffset', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_timestampOffset, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_appendWindowStart = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'appendWindowStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_appendWindowStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_appendWindowStart = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'appendWindowStart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_appendWindowStart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_appendWindowEnd = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'appendWindowEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_appendWindowEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_appendWindowEnd = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'appendWindowEnd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_appendWindowEnd, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_onupdatestart = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onupdatestart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_onupdatestart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_onupdatestart = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onupdatestart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_onupdatestart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_onupdate = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onupdate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_onupdate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_onupdate = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onupdate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_onupdate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_onupdateend = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onupdateend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_onupdateend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_onupdateend = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onupdateend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_onupdateend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_get_onabort = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onabort'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_get_onabort, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBuffer_set_onabort = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onabort', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_set_onabort, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBuffer_abort = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SourceBuffer_appendBuffer = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_appendBuffer, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SourceBuffer_changeType = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_changeType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SourceBuffer_remove = function () { let r = cbb_wf.checkIllegal(this, "SourceBuffer"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBuffer_remove, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SourceBufferList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SourceBufferList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBufferList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBufferList_get_onaddsourcebuffer = function () { let r = cbb_wf.checkIllegal(this, "SourceBufferList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaddsourcebuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBufferList_get_onaddsourcebuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBufferList_set_onaddsourcebuffer = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBufferList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaddsourcebuffer', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBufferList_set_onaddsourcebuffer, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SourceBufferList_get_onremovesourcebuffer = function () { let r = cbb_wf.checkIllegal(this, "SourceBufferList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onremovesourcebuffer'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBufferList_get_onremovesourcebuffer, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SourceBufferList_set_onremovesourcebuffer = function (val) { let r = cbb_wf.checkIllegal(this, "SourceBufferList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onremovesourcebuffer', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SourceBufferList_set_onremovesourcebuffer, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_get_kind = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'kind'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_kind, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_get_id = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_get_label = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'label'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_label, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_get_enabled = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'enabled'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_enabled, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_set_enabled = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'enabled', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_set_enabled, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_get_muted = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'muted'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_muted, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_get_onmute = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmute'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_onmute, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_set_onmute = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmute', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_set_onmute, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_get_onunmute = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onunmute'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_onunmute, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_set_onunmute = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onunmute', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_set_onunmute, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_get_readyState = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'readyState'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_readyState, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_get_onended = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onended'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_onended, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_set_onended = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onended', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_set_onended, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_get_contentHint = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'contentHint'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_contentHint, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_set_contentHint = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'contentHint', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_set_contentHint, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_applyConstraints = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_applyConstraints, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrack_clone = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_clone, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrack_getCapabilities = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_getCapabilities, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrack_getConstraints = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_getConstraints, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrack_getSettings = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_getSettings, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrack_stop = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrack_get_oncapturehandlechange = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncapturehandlechange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_get_oncapturehandlechange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrack_set_oncapturehandlechange = function (val) { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncapturehandlechange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_set_oncapturehandlechange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.MediaStreamTrack_getCaptureHandle = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrack"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "MediaStreamTrack_getCaptureHandle, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigateEvent_get_navigationType = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigationType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_navigationType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_destination = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'destination'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_destination, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_canTransition = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canTransition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_canTransition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_userInitiated = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userInitiated'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_userInitiated, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_hashChange = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hashChange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_hashChange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_signal = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'signal'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_signal, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_formData = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'formData'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_formData, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_downloadRequest = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'downloadRequest'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_downloadRequest, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_get_info = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'info'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_get_info, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigateEvent_restoreScroll = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_restoreScroll, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigateEvent_transitionWhile = function () { let r = cbb_wf.checkIllegal(this, "NavigateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigateEvent_transitionWhile, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_get_currentEntry = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'currentEntry'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_currentEntry, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_get_transition = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'transition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_transition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_get_canGoBack = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canGoBack'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_canGoBack, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_get_canGoForward = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'canGoForward'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_canGoForward, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_get_onnavigate = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onnavigate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_onnavigate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_set_onnavigate = function (val) { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onnavigate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_set_onnavigate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Navigation_get_onnavigatesuccess = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onnavigatesuccess'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_onnavigatesuccess, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_set_onnavigatesuccess = function (val) { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onnavigatesuccess', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_set_onnavigatesuccess, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Navigation_get_onnavigateerror = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onnavigateerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_onnavigateerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_set_onnavigateerror = function (val) { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onnavigateerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_set_onnavigateerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Navigation_get_oncurrententrychange = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncurrententrychange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_get_oncurrententrychange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Navigation_set_oncurrententrychange = function (val) { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncurrententrychange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_set_oncurrententrychange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Navigation_back = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_back, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_entries = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_forward = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_forward, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_navigate = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_navigate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_reload = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_reload, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_traverseTo = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_traverseTo, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Navigation_updateCurrentEntry = function () { let r = cbb_wf.checkIllegal(this, "Navigation"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Navigation_updateCurrentEntry, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationCurrentEntryChangeEvent_get_navigationType = function () { let r = cbb_wf.checkIllegal(this, "NavigationCurrentEntryChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigationType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationCurrentEntryChangeEvent_get_navigationType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationCurrentEntryChangeEvent_get_from = function () { let r = cbb_wf.checkIllegal(this, "NavigationCurrentEntryChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'from'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationCurrentEntryChangeEvent_get_from, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationDestination_get_key = function () { let r = cbb_wf.checkIllegal(this, "NavigationDestination"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'key'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationDestination_get_key, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationDestination_get_id = function () { let r = cbb_wf.checkIllegal(this, "NavigationDestination"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationDestination_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationDestination_get_url = function () { let r = cbb_wf.checkIllegal(this, "NavigationDestination"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationDestination_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationDestination_get_index = function () { let r = cbb_wf.checkIllegal(this, "NavigationDestination"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'index'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationDestination_get_index, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationDestination_get_sameDocument = function () { let r = cbb_wf.checkIllegal(this, "NavigationDestination"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sameDocument'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationDestination_get_sameDocument, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationDestination_getState = function () { let r = cbb_wf.checkIllegal(this, "NavigationDestination"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationDestination_getState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationHistoryEntry_get_key = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'key'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_get_key, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationHistoryEntry_get_id = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationHistoryEntry_get_url = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationHistoryEntry_get_index = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'index'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_get_index, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationHistoryEntry_get_sameDocument = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sameDocument'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_get_sameDocument, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationHistoryEntry_get_ondispose = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondispose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_get_ondispose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationHistoryEntry_set_ondispose = function (val) { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondispose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_set_ondispose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.NavigationHistoryEntry_getState = function () { let r = cbb_wf.checkIllegal(this, "NavigationHistoryEntry"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationHistoryEntry_getState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigationTransition_get_navigationType = function () { let r = cbb_wf.checkIllegal(this, "NavigationTransition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigationType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationTransition_get_navigationType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationTransition_get_from = function () { let r = cbb_wf.checkIllegal(this, "NavigationTransition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'from'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationTransition_get_from, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationTransition_get_finished = function () { let r = cbb_wf.checkIllegal(this, "NavigationTransition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'finished'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigationTransition_get_finished, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigatorUAData_get_brands = function () { let r = cbb_wf.checkIllegal(this, "NavigatorUAData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'brands'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorUAData_get_brands, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigatorUAData_get_mobile = function () { let r = cbb_wf.checkIllegal(this, "NavigatorUAData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'mobile'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorUAData_get_mobile, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigatorUAData_get_platform = function () { let r = cbb_wf.checkIllegal(this, "NavigatorUAData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'platform'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorUAData_get_platform, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigatorUAData_getHighEntropyValues = function () { let r = cbb_wf.checkIllegal(this, "NavigatorUAData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorUAData_getHighEntropyValues, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NavigatorUAData_toJSON = function () { let r = cbb_wf.checkIllegal(this, "NavigatorUAData"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "NavigatorUAData_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Notification_get_onclick = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclick'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_onclick, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_set_onclick = function (val) { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclick', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_set_onclick, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Notification_get_onshow = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onshow'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_onshow, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_set_onshow = function (val) { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onshow', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_set_onshow, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Notification_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Notification_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_onclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_set_onclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Notification_get_title = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'title'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_title, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_dir = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'dir'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_dir, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_lang = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lang'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_lang, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_body = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'body'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_body, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_tag = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'tag'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_tag, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_icon = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'icon'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_icon, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_badge = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'badge'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_badge, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_vibrate = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'vibrate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_vibrate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_timestamp = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'timestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_timestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_renotify = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'renotify'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_renotify, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_silent = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'silent'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_silent, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_requireInteraction = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'requireInteraction'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_requireInteraction, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_data = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'data'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_data, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_get_actions = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'actions'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_actions, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.Notification_close = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Notification_get_image = function () { let r = cbb_wf.checkIllegal(this, "Notification"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'image'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Notification_get_image, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentInstruments_clear = function () { let r = cbb_wf.checkIllegal(this, "PaymentInstruments"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentInstruments_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentInstruments_delete = function () { let r = cbb_wf.checkIllegal(this, "PaymentInstruments"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentInstruments_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentInstruments_get = function () { let r = cbb_wf.checkIllegal(this, "PaymentInstruments"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentInstruments_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentInstruments_has = function () { let r = cbb_wf.checkIllegal(this, "PaymentInstruments"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentInstruments_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentInstruments_keys = function () { let r = cbb_wf.checkIllegal(this, "PaymentInstruments"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentInstruments_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentInstruments_set = function () { let r = cbb_wf.checkIllegal(this, "PaymentInstruments"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentInstruments_set, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentManager_get_instruments = function () { let r = cbb_wf.checkIllegal(this, "PaymentManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'instruments'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentManager_get_instruments, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentManager_get_userHint = function () { let r = cbb_wf.checkIllegal(this, "PaymentManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userHint'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentManager_get_userHint, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PaymentManager_set_userHint = function (val) { let r = cbb_wf.checkIllegal(this, "PaymentManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'userHint', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentManager_set_userHint, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PaymentManager_enableDelegations = function () { let r = cbb_wf.checkIllegal(this, "PaymentManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentManager_enableDelegations, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PaymentRequestUpdateEvent_updateWith = function () { let r = cbb_wf.checkIllegal(this, "PaymentRequestUpdateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PaymentRequestUpdateEvent_updateWith, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PeriodicSyncManager_getTags = function () { let r = cbb_wf.checkIllegal(this, "PeriodicSyncManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PeriodicSyncManager_getTags, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PeriodicSyncManager_register = function () { let r = cbb_wf.checkIllegal(this, "PeriodicSyncManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PeriodicSyncManager_register, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PeriodicSyncManager_unregister = function () { let r = cbb_wf.checkIllegal(this, "PeriodicSyncManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PeriodicSyncManager_unregister, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PermissionStatus_get_name = function () { let r = cbb_wf.checkIllegal(this, "PermissionStatus"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PermissionStatus_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PermissionStatus_get_state = function () { let r = cbb_wf.checkIllegal(this, "PermissionStatus"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PermissionStatus_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PermissionStatus_get_onchange = function () { let r = cbb_wf.checkIllegal(this, "PermissionStatus"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onchange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PermissionStatus_get_onchange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PermissionStatus_set_onchange = function (val) { let r = cbb_wf.checkIllegal(this, "PermissionStatus"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onchange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PermissionStatus_set_onchange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Permissions_query = function () { let r = cbb_wf.checkIllegal(this, "Permissions"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Permissions_query, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PictureInPictureEvent_get_pictureInPictureWindow = function () { let r = cbb_wf.checkIllegal(this, "PictureInPictureEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pictureInPictureWindow'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PictureInPictureEvent_get_pictureInPictureWindow, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PictureInPictureWindow_get_width = function () { let r = cbb_wf.checkIllegal(this, "PictureInPictureWindow"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PictureInPictureWindow_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PictureInPictureWindow_get_height = function () { let r = cbb_wf.checkIllegal(this, "PictureInPictureWindow"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PictureInPictureWindow_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PictureInPictureWindow_get_onresize = function () { let r = cbb_wf.checkIllegal(this, "PictureInPictureWindow"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onresize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PictureInPictureWindow_get_onresize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PictureInPictureWindow_set_onresize = function (val) { let r = cbb_wf.checkIllegal(this, "PictureInPictureWindow"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onresize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PictureInPictureWindow_set_onresize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.PushManager_getSubscription = function () { let r = cbb_wf.checkIllegal(this, "PushManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushManager_getSubscription, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PushManager_permissionState = function () { let r = cbb_wf.checkIllegal(this, "PushManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushManager_permissionState, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PushManager_subscribe = function () { let r = cbb_wf.checkIllegal(this, "PushManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushManager_subscribe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PushSubscription_get_endpoint = function () { let r = cbb_wf.checkIllegal(this, "PushSubscription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'endpoint'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscription_get_endpoint, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PushSubscription_get_expirationTime = function () { let r = cbb_wf.checkIllegal(this, "PushSubscription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'expirationTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscription_get_expirationTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PushSubscription_get_options = function () { let r = cbb_wf.checkIllegal(this, "PushSubscription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'options'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscription_get_options, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PushSubscription_getKey = function () { let r = cbb_wf.checkIllegal(this, "PushSubscription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscription_getKey, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PushSubscription_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PushSubscription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscription_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PushSubscription_unsubscribe = function () { let r = cbb_wf.checkIllegal(this, "PushSubscription"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscription_unsubscribe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PushSubscriptionOptions_get_userVisibleOnly = function () { let r = cbb_wf.checkIllegal(this, "PushSubscriptionOptions"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'userVisibleOnly'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscriptionOptions_get_userVisibleOnly, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PushSubscriptionOptions_get_applicationServerKey = function () { let r = cbb_wf.checkIllegal(this, "PushSubscriptionOptions"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'applicationServerKey'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "PushSubscriptionOptions_get_applicationServerKey, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RemotePlayback_get_state = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RemotePlayback_get_onconnecting = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnecting'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_get_onconnecting, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RemotePlayback_set_onconnecting = function (val) { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnecting', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_set_onconnecting, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RemotePlayback_get_onconnect = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_get_onconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RemotePlayback_set_onconnect = function (val) { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_set_onconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RemotePlayback_get_ondisconnect = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ondisconnect'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_get_ondisconnect, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.RemotePlayback_set_ondisconnect = function (val) { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ondisconnect', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_set_ondisconnect, this =>", toString.call(this), ", val => ", '' + val, info); } } this.RemotePlayback_cancelWatchAvailability = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_cancelWatchAvailability, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RemotePlayback_prompt = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_prompt, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.RemotePlayback_watchAvailability = function () { let r = cbb_wf.checkIllegal(this, "RemotePlayback"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "RemotePlayback_watchAvailability, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Scheduler_postTask = function () { let r = cbb_wf.checkIllegal(this, "Scheduler"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "Scheduler_postTask, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TaskController_setPriority = function () { let r = cbb_wf.checkIllegal(this, "TaskController"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskController_setPriority, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TaskPriorityChangeEvent_get_previousPriority = function () { let r = cbb_wf.checkIllegal(this, "TaskPriorityChangeEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'previousPriority'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskPriorityChangeEvent_get_previousPriority, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskSignal_get_priority = function () { let r = cbb_wf.checkIllegal(this, "TaskSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'priority'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskSignal_get_priority, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskSignal_get_onprioritychange = function () { let r = cbb_wf.checkIllegal(this, "TaskSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onprioritychange'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskSignal_get_onprioritychange, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TaskSignal_set_onprioritychange = function (val) { let r = cbb_wf.checkIllegal(this, "TaskSignal"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onprioritychange', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TaskSignal_set_onprioritychange, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SharedWorker_get_port = function () { let r = cbb_wf.checkIllegal(this, "SharedWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SharedWorker_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SharedWorker_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "SharedWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SharedWorker_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SharedWorker_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "SharedWorker"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SharedWorker_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisErrorEvent_get_error = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisErrorEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisErrorEvent_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisEvent_get_utterance = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'utterance'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisEvent_get_utterance, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisEvent_get_charIndex = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'charIndex'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisEvent_get_charIndex, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisEvent_get_charLength = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'charLength'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisEvent_get_charLength, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisEvent_get_elapsedTime = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'elapsedTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisEvent_get_elapsedTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisEvent_get_name = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisEvent_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_get_text = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'text'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_text, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_text = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'text', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_text, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_lang = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lang'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_lang, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_lang = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lang', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_lang, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_voice = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'voice'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_voice, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_voice = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'voice', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_voice, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_volume = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'volume'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_volume, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_volume = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'volume', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_volume, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_rate = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_rate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_rate = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'rate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_rate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_pitch = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pitch'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_pitch, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_pitch = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'pitch', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_pitch, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onstart = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onstart = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onend = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onend = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onpause = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onpause'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onpause, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onpause = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onpause', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onpause, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onresume = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onresume'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onresume, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onresume = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onresume', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onresume, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onmark = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onmark'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onmark, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onmark = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onmark', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onmark, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesisUtterance_get_onboundary = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onboundary'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_get_onboundary, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisUtterance_set_onboundary = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisUtterance"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onboundary', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "SpeechSynthesisUtterance_set_onboundary, this =>", toString.call(this), ", val => ", '' + val, info); } } this.TrustedHTML_toJSON = function () { let r = cbb_wf.checkIllegal(this, "TrustedHTML"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedHTML_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedHTML_toString = function () { let r = cbb_wf.checkIllegal(this, "TrustedHTML"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedHTML_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedScript_toJSON = function () { let r = cbb_wf.checkIllegal(this, "TrustedScript"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedScript_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedScript_toString = function () { let r = cbb_wf.checkIllegal(this, "TrustedScript"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedScript_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedScriptURL_toJSON = function () { let r = cbb_wf.checkIllegal(this, "TrustedScriptURL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedScriptURL_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedScriptURL_toString = function () { let r = cbb_wf.checkIllegal(this, "TrustedScriptURL"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedScriptURL_toString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicy_get_name = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicy_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TrustedTypePolicy_createHTML = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicy_createHTML, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicy_createScript = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicy_createScript, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicy_createScriptURL = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicy"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicy_createScriptURL, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_get_emptyHTML = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'emptyHTML'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_get_emptyHTML, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TrustedTypePolicyFactory_get_emptyScript = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'emptyScript'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_get_emptyScript, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TrustedTypePolicyFactory_get_defaultPolicy = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'defaultPolicy'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_get_defaultPolicy, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TrustedTypePolicyFactory_createPolicy = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_createPolicy, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_getAttributeType = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_getAttributeType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_getPropertyType = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_getPropertyType, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_getTypeMapping = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_getTypeMapping, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_isHTML = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_isHTML, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_isScript = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_isScript, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TrustedTypePolicyFactory_isScriptURL = function () { let r = cbb_wf.checkIllegal(this, "TrustedTypePolicyFactory"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "TrustedTypePolicyFactory_isScriptURL, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLPattern_get_protocol = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'protocol'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_protocol, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_username = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'username'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_username, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_password = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'password'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_password, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_hostname = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hostname'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_hostname, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_port = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'port'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_port, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_pathname = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pathname'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_pathname, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_search = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'search'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_search, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_get_hash = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'hash'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_get_hash, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.URLPattern_exec = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_exec, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.URLPattern_test = function () { let r = cbb_wf.checkIllegal(this, "URLPattern"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "URLPattern_test, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.VideoPlaybackQuality_get_creationTime = function () { let r = cbb_wf.checkIllegal(this, "VideoPlaybackQuality"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'creationTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoPlaybackQuality_get_creationTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoPlaybackQuality_get_totalVideoFrames = function () { let r = cbb_wf.checkIllegal(this, "VideoPlaybackQuality"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'totalVideoFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoPlaybackQuality_get_totalVideoFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoPlaybackQuality_get_droppedVideoFrames = function () { let r = cbb_wf.checkIllegal(this, "VideoPlaybackQuality"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'droppedVideoFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoPlaybackQuality_get_droppedVideoFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.VideoPlaybackQuality_get_corruptedVideoFrames = function () { let r = cbb_wf.checkIllegal(this, "VideoPlaybackQuality"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'corruptedVideoFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "VideoPlaybackQuality_get_corruptedVideoFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XSLTProcessor_clearParameters = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_clearParameters, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_getParameter = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_getParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_importStylesheet = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_importStylesheet, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_removeParameter = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_removeParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_reset = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_reset, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_setParameter = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_setParameter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_transformToDocument = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_transformToDocument, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XSLTProcessor_transformToFragment = function () { let r = cbb_wf.checkIllegal(this, "XSLTProcessor"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] " + ctx.my_api.memory.vm_index + "XSLTProcessor_transformToFragment, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ProtectedAudience_queryFeatureSupport = function () { let r = cbb_wf.checkIllegal(this, "ProtectedAudience"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ProtectedAudience_queryFeatureSupport, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucketManager_delete = function () { let r = cbb_wf.checkIllegal(this, "StorageBucketManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucketManager_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucketManager_keys = function () { let r = cbb_wf.checkIllegal(this, "StorageBucketManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucketManager_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucketManager_open = function () { let r = cbb_wf.checkIllegal(this, "StorageBucketManager"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucketManager_open, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextUpdateEvent_get_updateRangeStart = function () { let r = cbb_wf.checkIllegal(this, "TextUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'updateRangeStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextUpdateEvent_get_updateRangeStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextUpdateEvent_get_updateRangeEnd = function () { let r = cbb_wf.checkIllegal(this, "TextUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'updateRangeEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextUpdateEvent_get_updateRangeEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextUpdateEvent_get_text = function () { let r = cbb_wf.checkIllegal(this, "TextUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'text'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextUpdateEvent_get_text, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextUpdateEvent_get_selectionStart = function () { let r = cbb_wf.checkIllegal(this, "TextUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectionStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextUpdateEvent_get_selectionStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextUpdateEvent_get_selectionEnd = function () { let r = cbb_wf.checkIllegal(this, "TextUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectionEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextUpdateEvent_get_selectionEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextFormatUpdateEvent_getTextFormats = function () { let r = cbb_wf.checkIllegal(this, "TextFormatUpdateEvent"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] TextFormatUpdateEvent_getTextFormats, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.TextFormat_get_rangeStart = function () { let r = cbb_wf.checkIllegal(this, "TextFormat"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rangeStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextFormat_get_rangeStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextFormat_get_rangeEnd = function () { let r = cbb_wf.checkIllegal(this, "TextFormat"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rangeEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextFormat_get_rangeEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextFormat_get_underlineStyle = function () { let r = cbb_wf.checkIllegal(this, "TextFormat"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'underlineStyle'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextFormat_get_underlineStyle, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.TextFormat_get_underlineThickness = function () { let r = cbb_wf.checkIllegal(this, "TextFormat"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'underlineThickness'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] TextFormat_get_underlineThickness, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackVideoStats_get_deliveredFrames = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackVideoStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deliveredFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackVideoStats_get_deliveredFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackVideoStats_get_discardedFrames = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackVideoStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'discardedFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackVideoStats_get_discardedFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackVideoStats_get_totalFrames = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackVideoStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'totalFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackVideoStats_get_totalFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackVideoStats_toJSON = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackVideoStats"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] MediaStreamTrackVideoStats_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrackAudioStats_get_deliveredFrames = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deliveredFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_deliveredFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_deliveredFramesDuration = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'deliveredFramesDuration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_deliveredFramesDuration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_totalFrames = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'totalFrames'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_totalFrames, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_totalFramesDuration = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'totalFramesDuration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_totalFramesDuration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_latency = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'latency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_latency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_averageLatency = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'averageLatency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_averageLatency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_minimumLatency = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minimumLatency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_minimumLatency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_get_maximumLatency = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maximumLatency'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] MediaStreamTrackAudioStats_get_maximumLatency, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.MediaStreamTrackAudioStats_resetLatency = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] MediaStreamTrackAudioStats_resetLatency, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.MediaStreamTrackAudioStats_toJSON = function () { let r = cbb_wf.checkIllegal(this, "MediaStreamTrackAudioStats"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] MediaStreamTrackAudioStats_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_get_text = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'text'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_text, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_get_selectionStart = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectionStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_selectionStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_get_selectionEnd = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'selectionEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_selectionEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_get_characterBoundsRangeStart = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'characterBoundsRangeStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_characterBoundsRangeStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_get_ontextupdate = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ontextupdate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_ontextupdate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_set_ontextupdate = function (val) { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ontextupdate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_set_ontextupdate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EditContext_get_ontextformatupdate = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'ontextformatupdate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_ontextformatupdate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_set_ontextformatupdate = function (val) { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'ontextformatupdate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_set_ontextformatupdate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EditContext_get_oncharacterboundsupdate = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncharacterboundsupdate'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_oncharacterboundsupdate, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_set_oncharacterboundsupdate = function (val) { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncharacterboundsupdate', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_set_oncharacterboundsupdate, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EditContext_get_oncompositionstart = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncompositionstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_oncompositionstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_set_oncompositionstart = function (val) { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncompositionstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_set_oncompositionstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EditContext_get_oncompositionend = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncompositionend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_get_oncompositionend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.EditContext_set_oncompositionend = function (val) { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncompositionend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] EditContext_set_oncompositionend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.EditContext_attachedElements = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_attachedElements, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_characterBounds = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_characterBounds, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_updateCharacterBounds = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_updateCharacterBounds, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_updateControlBounds = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_updateControlBounds, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_updateSelection = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_updateSelection, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_updateSelectionBounds = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_updateSelectionBounds, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.EditContext_updateText = function () { let r = cbb_wf.checkIllegal(this, "EditContext"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] EditContext_updateText, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CloseWatcher_get_oncancel = function () { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'oncancel'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CloseWatcher_get_oncancel, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CloseWatcher_set_oncancel = function (val) { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'oncancel', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CloseWatcher_set_oncancel, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CloseWatcher_get_onclose = function () { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onclose'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CloseWatcher_get_onclose, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CloseWatcher_set_onclose = function (val) { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onclose', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CloseWatcher_set_onclose, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CloseWatcher_close = function () { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] CloseWatcher_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CloseWatcher_destroy = function () { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] CloseWatcher_destroy, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CloseWatcher_requestClose = function () { let r = cbb_wf.checkIllegal(this, "CloseWatcher"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] CloseWatcher_requestClose, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.CharacterBoundsUpdateEvent_get_rangeStart = function () { let r = cbb_wf.checkIllegal(this, "CharacterBoundsUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rangeStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CharacterBoundsUpdateEvent_get_rangeStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CharacterBoundsUpdateEvent_get_rangeEnd = function () { let r = cbb_wf.checkIllegal(this, "CharacterBoundsUpdateEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'rangeEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CharacterBoundsUpdateEvent_get_rangeEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryRule"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryRule_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryRule"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryRule_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryRule_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'style', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryRule_set_style, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_margin = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_margin = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginTop = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginTop'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginTop, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginTop = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginTop', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginTop, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginRight = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginRight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginRight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginRight = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginRight', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginRight, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginBottom = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginBottom'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginBottom, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginBottom = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginBottom', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginBottom, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginLeft = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginLeft'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginLeft, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginLeft = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginLeft', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginLeft, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginBlock = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginBlock'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginBlock, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginBlock = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginBlock', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginBlock, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginBlockStart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginBlockStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginBlockStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginBlockStart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginBlockStart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginBlockStart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginBlockEnd = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginBlockEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginBlockEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginBlockEnd = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginBlockEnd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginBlockEnd, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginInline = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginInline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginInline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginInline = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginInline', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginInline, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginInlineStart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginInlineStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginInlineStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginInlineStart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginInlineStart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginInlineStart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginInlineEnd = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'marginInlineEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_marginInlineEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginInlineEnd = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'marginInlineEnd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_marginInlineEnd, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_margintop = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-top'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-top, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_margintop = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-top', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-top, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginright = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-right'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-right, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginright = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-right', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-right, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginbottom = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-bottom'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-bottom, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginbottom = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-bottom', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-bottom, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginleft = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-left'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-left, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginleft = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-left', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-left, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginblock = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-block'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-block, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginblock = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-block', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-block, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginblockstart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-block-start'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-block-start, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginblockstart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-block-start', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-block-start, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_marginblockend = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-block-end'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-block-end, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_marginblockend = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-block-end', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-block-end, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_margininline = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-inline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-inline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_margininline = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-inline', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-inline, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_margininlinestart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-inline-start'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-inline-start, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_margininlinestart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-inline-start', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-inline-start, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_margininlineend = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'margin-inline-end'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_margin-inline-end, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_margininlineend = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'margin-inline-end', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_margin-inline-end, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_inset = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_inset = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetBlock = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'insetBlock'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_insetBlock, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetBlock = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'insetBlock', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_insetBlock, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetBlockStart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'insetBlockStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_insetBlockStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetBlockStart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'insetBlockStart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_insetBlockStart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetBlockEnd = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'insetBlockEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_insetBlockEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetBlockEnd = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'insetBlockEnd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_insetBlockEnd, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetInline = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'insetInline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_insetInline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetInline = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'insetInline', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_insetInline, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetInlineStart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'insetInlineStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_insetInlineStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetInlineStart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'insetInlineStart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_insetInlineStart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetInlineEnd = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'insetInlineEnd'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_insetInlineEnd, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetInlineEnd = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'insetInlineEnd', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_insetInlineEnd, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_top = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'top'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_top, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_top = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'top', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_top, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_left = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'left'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_left, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_left = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'left', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_left, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_right = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'right'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_right, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_right = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'right', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_right, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_bottom = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'bottom'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_bottom, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_bottom = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'bottom', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_bottom, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetblock = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset-block'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset-block, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetblock = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset-block', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset-block, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetblockstart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset-block-start'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset-block-start, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetblockstart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset-block-start', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset-block-start, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetblockend = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset-block-end'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset-block-end, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetblockend = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset-block-end', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset-block-end, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetinline = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset-inline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset-inline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetinline = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset-inline', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset-inline, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetinlinestart = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset-inline-start'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset-inline-start, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetinlinestart = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset-inline-start', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset-inline-start, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_insetinlineend = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inset-inline-end'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inset-inline-end, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_insetinlineend = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inset-inline-end', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inset-inline-end, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_width = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_width = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'width', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_width, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minWidth = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_minWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minWidth = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'minWidth', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_minWidth, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxWidth = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxWidth'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_maxWidth, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxWidth = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxWidth', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_maxWidth, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_height = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_height = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'height', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_height, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minHeight = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_minHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minHeight = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'minHeight', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_minHeight, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxHeight = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxHeight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_maxHeight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxHeight = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxHeight', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_maxHeight, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_blockSize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'blockSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_blockSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_blockSize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'blockSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_blockSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minBlockSize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minBlockSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_minBlockSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minBlockSize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'minBlockSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_minBlockSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxBlockSize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxBlockSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_maxBlockSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxBlockSize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxBlockSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_maxBlockSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_inlineSize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inlineSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inlineSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_inlineSize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inlineSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inlineSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minInlineSize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'minInlineSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_minInlineSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minInlineSize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'minInlineSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_minInlineSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxInlineSize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxInlineSize'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_maxInlineSize, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxInlineSize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxInlineSize', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_maxInlineSize, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minwidth = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'min-width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_min-width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minwidth = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'min-width', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_min-width, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxwidth = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'max-width'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_max-width, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxwidth = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'max-width', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_max-width, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minheight = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'min-height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_min-height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minheight = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'min-height', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_min-height, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxheight = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'max-height'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_max-height, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxheight = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'max-height', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_max-height, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_blocksize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'block-size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_block-size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_blocksize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'block-size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_block-size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_minblocksize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'min-block-size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_min-block-size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_minblocksize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'min-block-size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_min-block-size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxblocksize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'max-block-size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_max-block-size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxblocksize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'max-block-size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_max-block-size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_inlinesize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'inline-size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_inline-size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_inlinesize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'inline-size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_inline-size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_mininlinesize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'min-inline-size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_min-inline-size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_mininlinesize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'min-inline-size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_min-inline-size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_maxinlinesize = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'max-inline-size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_max-inline-size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_maxinlinesize = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'max-inline-size', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_max-inline-size, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_placeSelf = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'placeSelf'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_placeSelf, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_placeSelf = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'placeSelf', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_placeSelf, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_alignSelf = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'alignSelf'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_alignSelf, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_alignSelf = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'alignSelf', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_alignSelf, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_justifySelf = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'justifySelf'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_justifySelf, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_justifySelf = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'justifySelf', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_justifySelf, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_placeself = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'place-self'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_place-self, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_placeself = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'place-self', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_place-self, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_alignself = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'align-self'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_align-self, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_alignself = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'align-self', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_align-self, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_justifyself = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'justify-self'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_justify-self, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_justifyself = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'justify-self', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_justify-self, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_positionAnchor = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionAnchor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_positionAnchor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_positionAnchor = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'positionAnchor', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_positionAnchor, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_positionanchor = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'position-anchor'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_position-anchor, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_positionanchor = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'position-anchor', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_position-anchor, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_positionArea = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'positionArea'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_positionArea, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_positionArea = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'positionArea', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_positionArea, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSPositionTryDescriptors_get_positionarea = function () { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'position-area'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_get_position-area, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSPositionTryDescriptors_set_positionarea = function (val) { let r = cbb_wf.checkIllegal(this, "CSSPositionTryDescriptors"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'position-area', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSPositionTryDescriptors_set_position-area, this =>", toString.call(this), ", val => ", '' + val, info); } } this.Iterator_reduce = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_reduce, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_toArray = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_toArray, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_forEach = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_some = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_some, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_every = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_every, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_find = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_find, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_map = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_map, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_filter = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_filter, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_take = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_take, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_drop = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_drop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.Iterator_flatMap = function () { let r = cbb_wf.checkIllegal(this, "Iterator"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] Iterator_flatMap, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this._from = function () { let result; if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] _set_from, this =>", toString.call(this), ", arguments => ", arguments, info); } } this.IdentityCredentialError_get_code = function () { let r = cbb_wf.checkIllegal(this, "IdentityCredentialError"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'code'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] IdentityCredentialError_get_code, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.IdentityCredentialError_get_url = function () { let r = cbb_wf.checkIllegal(this, "IdentityCredentialError"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] IdentityCredentialError_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasonDetails_get_reason = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasonDetails"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reason'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasonDetails_get_reason, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasonDetails_toJSON = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasonDetails"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] NotRestoredReasonDetails_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.NotRestoredReasons_get_src = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'src'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasons_get_src, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasons_get_id = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'id'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasons_get_id, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasons_get_name = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasons_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasons_get_url = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasons_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasons_get_reasons = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reasons'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasons_get_reasons, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasons_get_children = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'children'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NotRestoredReasons_get_children, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NotRestoredReasons_toJSON = function () { let r = cbb_wf.checkIllegal(this, "NotRestoredReasons"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] NotRestoredReasons_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PressureObserver_disconnect = function () { let r = cbb_wf.checkIllegal(this, "PressureObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PressureObserver_disconnect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PressureObserver_observe = function () { let r = cbb_wf.checkIllegal(this, "PressureObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PressureObserver_observe, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PressureObserver_takeRecords = function () { let r = cbb_wf.checkIllegal(this, "PressureObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PressureObserver_takeRecords, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PressureObserver_unobserve = function () { let r = cbb_wf.checkIllegal(this, "PressureObserver"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PressureObserver_unobserve, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PressureRecord_get_source = function () { let r = cbb_wf.checkIllegal(this, "PressureRecord"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'source'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PressureRecord_get_source, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PressureRecord_get_state = function () { let r = cbb_wf.checkIllegal(this, "PressureRecord"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'state'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PressureRecord_get_state, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PressureRecord_get_time = function () { let r = cbb_wf.checkIllegal(this, "PressureRecord"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'time'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PressureRecord_get_time, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PressureRecord_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PressureRecord"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PressureRecord_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucket_get_name = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] StorageBucket_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageBucket_get_indexedDB = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'indexedDB'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] StorageBucket_get_indexedDB, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageBucket_get_caches = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'caches'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] StorageBucket_get_caches, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.StorageBucket_estimate = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucket_estimate, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucket_expires = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucket_expires, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucket_getDirectory = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucket_getDirectory, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucket_persisted = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucket_persisted, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucket_setExpires = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucket_setExpires, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.StorageBucket_persist = function () { let r = cbb_wf.checkIllegal(this, "StorageBucket"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] StorageBucket_persist, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHand_get_size = function () { let r = cbb_wf.checkIllegal(this, "XRHand"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] XRHand_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRHand_get = function () { let r = cbb_wf.checkIllegal(this, "XRHand"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] XRHand_get, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHand_entries = function () { let r = cbb_wf.checkIllegal(this, "XRHand"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] XRHand_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHand_forEach = function () { let r = cbb_wf.checkIllegal(this, "XRHand"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] XRHand_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHand_keys = function () { let r = cbb_wf.checkIllegal(this, "XRHand"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] XRHand_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRHand_values = function () { let r = cbb_wf.checkIllegal(this, "XRHand"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] XRHand_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.XRJointPose_get_radius = function () { let r = cbb_wf.checkIllegal(this, "XRJointPose"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'radius'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] XRJointPose_get_radius, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.XRJointSpace_get_jointName = function () { let r = cbb_wf.checkIllegal(this, "XRJointSpace"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'jointName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] XRJointSpace_get_jointName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMarginRule_get_name = function () { let r = cbb_wf.checkIllegal(this, "CSSMarginRule"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSMarginRule_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMarginRule_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSMarginRule"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSMarginRule_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSMarginRule_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "CSSMarginRule"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'style', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSMarginRule_set_style, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSNestedDeclarations_get_style = function () { let r = cbb_wf.checkIllegal(this, "CSSNestedDeclarations"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'style'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSNestedDeclarations_get_style, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSNestedDeclarations_set_style = function (val) { let r = cbb_wf.checkIllegal(this, "CSSNestedDeclarations"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'style', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSNestedDeclarations_set_style, this =>", toString.call(this), ", val => ", '' + val, info); } } this.CSSViewTransitionRule_get_navigation = function () { let r = cbb_wf.checkIllegal(this, "CSSViewTransitionRule"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSViewTransitionRule_get_navigation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CSSViewTransitionRule_get_types = function () { let r = cbb_wf.checkIllegal(this, "CSSViewTransitionRule"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'types'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CSSViewTransitionRule_get_types, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CaretPosition_get_offsetNode = function () { let r = cbb_wf.checkIllegal(this, "CaretPosition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offsetNode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CaretPosition_get_offsetNode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CaretPosition_get_offset = function () { let r = cbb_wf.checkIllegal(this, "CaretPosition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'offset'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] CaretPosition_get_offset, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.CaretPosition_getClientRect = function () { let r = cbb_wf.checkIllegal(this, "CaretPosition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] CaretPosition_getClientRect, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ChapterInformation_get_title = function () { let r = cbb_wf.checkIllegal(this, "ChapterInformation"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'title'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] ChapterInformation_get_title, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ChapterInformation_get_startTime = function () { let r = cbb_wf.checkIllegal(this, "ChapterInformation"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'startTime'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] ChapterInformation_get_startTime, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ChapterInformation_get_artwork = function () { let r = cbb_wf.checkIllegal(this, "ChapterInformation"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'artwork'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] ChapterInformation_get_artwork, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationActivation_get_entry = function () { let r = cbb_wf.checkIllegal(this, "NavigationActivation"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'entry'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NavigationActivation_get_entry, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationActivation_get_from = function () { let r = cbb_wf.checkIllegal(this, "NavigationActivation"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'from'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NavigationActivation_get_from, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.NavigationActivation_get_navigationType = function () { let r = cbb_wf.checkIllegal(this, "NavigationActivation"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'navigationType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] NavigationActivation_get_navigationType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PageRevealEvent_get_viewTransition = function () { let r = cbb_wf.checkIllegal(this, "PageRevealEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'viewTransition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PageRevealEvent_get_viewTransition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PageSwapEvent_get_activation = function () { let r = cbb_wf.checkIllegal(this, "PageSwapEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'activation'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PageSwapEvent_get_activation, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PageSwapEvent_get_viewTransition = function () { let r = cbb_wf.checkIllegal(this, "PageSwapEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'viewTransition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PageSwapEvent_get_viewTransition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongAnimationFrameTiming_get_renderStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongAnimationFrameTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'renderStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceLongAnimationFrameTiming_get_renderStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongAnimationFrameTiming_get_styleAndLayoutStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongAnimationFrameTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'styleAndLayoutStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceLongAnimationFrameTiming_get_styleAndLayoutStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongAnimationFrameTiming_get_firstUIEventTimestamp = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongAnimationFrameTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'firstUIEventTimestamp'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceLongAnimationFrameTiming_get_firstUIEventTimestamp, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongAnimationFrameTiming_get_blockingDuration = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongAnimationFrameTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'blockingDuration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceLongAnimationFrameTiming_get_blockingDuration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongAnimationFrameTiming_get_scripts = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongAnimationFrameTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'scripts'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceLongAnimationFrameTiming_get_scripts, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceLongAnimationFrameTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceLongAnimationFrameTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PerformanceLongAnimationFrameTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.PerformanceScriptTiming_get_invokerType = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'invokerType'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_invokerType, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_invoker = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'invoker'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_invoker, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_windowAttribution = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'windowAttribution'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_windowAttribution, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_executionStart = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'executionStart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_executionStart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_forcedStyleAndLayoutDuration = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'forcedStyleAndLayoutDuration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_forcedStyleAndLayoutDuration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_pauseDuration = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pauseDuration'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_pauseDuration, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_window = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'window'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_window, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_sourceURL = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sourceURL'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_sourceURL, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_sourceFunctionName = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sourceFunctionName'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_sourceFunctionName, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_get_sourceCharPosition = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'sourceCharPosition'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] PerformanceScriptTiming_get_sourceCharPosition, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.PerformanceScriptTiming_toJSON = function () { let r = cbb_wf.checkIllegal(this, "PerformanceScriptTiming"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] PerformanceScriptTiming_toJSON, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SnapEvent_get_snapTargetBlock = function () { let r = cbb_wf.checkIllegal(this, "SnapEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'snapTargetBlock'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SnapEvent_get_snapTargetBlock, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SnapEvent_get_snapTargetInline = function () { let r = cbb_wf.checkIllegal(this, "SnapEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'snapTargetInline'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SnapEvent_get_snapTargetInline, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesis_get_pending = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'pending'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesis_get_pending, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesis_get_speaking = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'speaking'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesis_get_speaking, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesis_get_paused = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'paused'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesis_get_paused, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesis_get_onvoiceschanged = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onvoiceschanged'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesis_get_onvoiceschanged, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesis_set_onvoiceschanged = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onvoiceschanged', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesis_set_onvoiceschanged, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechSynthesis_cancel = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechSynthesis_cancel, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechSynthesis_getVoices = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechSynthesis_getVoices, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechSynthesis_pause = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechSynthesis_pause, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechSynthesis_resume = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechSynthesis_resume, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechSynthesis_speak = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesis"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechSynthesis_speak, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechSynthesisVoice_get_voiceURI = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisVoice"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'voiceURI'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesisVoice_get_voiceURI, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisVoice_get_name = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisVoice"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'name'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesisVoice_get_name, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisVoice_get_lang = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisVoice"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lang'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesisVoice_get_lang, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisVoice_get_localService = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisVoice"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'localService'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesisVoice_get_localService, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechSynthesisVoice_get_default = function () { let r = cbb_wf.checkIllegal(this, "SpeechSynthesisVoice"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'default'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechSynthesisVoice_get_default, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ViewTransitionTypeSet_get_size = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'size'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] ViewTransitionTypeSet_get_size, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.ViewTransitionTypeSet_add = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_add, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_clear = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_clear, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_delete = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_delete, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_entries = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_entries, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_forEach = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_forEach, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_has = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_has, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_keys = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_keys, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.ViewTransitionTypeSet_values = function () { let r = cbb_wf.checkIllegal(this, "ViewTransitionTypeSet"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] ViewTransitionTypeSet_values, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.WebSocketError_get_closeCode = function () { let r = cbb_wf.checkIllegal(this, "WebSocketError"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closeCode'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] WebSocketError_get_closeCode, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocketError_get_reason = function () { let r = cbb_wf.checkIllegal(this, "WebSocketError"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'reason'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] WebSocketError_get_reason, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocketStream_get_url = function () { let r = cbb_wf.checkIllegal(this, "WebSocketStream"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'url'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] WebSocketStream_get_url, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocketStream_get_opened = function () { let r = cbb_wf.checkIllegal(this, "WebSocketStream"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'opened'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] WebSocketStream_get_opened, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocketStream_get_closed = function () { let r = cbb_wf.checkIllegal(this, "WebSocketStream"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'closed'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] WebSocketStream_get_closed, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.WebSocketStream_close = function () { let r = cbb_wf.checkIllegal(this, "WebSocketStream"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] WebSocketStream_close, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechGrammar_get_src = function () { let r = cbb_wf.checkIllegal(this, "SpeechGrammar"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'src'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechGrammar_get_src, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechGrammar_set_src = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechGrammar"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'src', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechGrammar_set_src, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechGrammar_get_weight = function () { let r = cbb_wf.checkIllegal(this, "SpeechGrammar"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'weight'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechGrammar_get_weight, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechGrammar_set_weight = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechGrammar"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'weight', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechGrammar_set_weight, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechGrammarList_get_length = function () { let r = cbb_wf.checkIllegal(this, "SpeechGrammarList"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'length'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechGrammarList_get_length, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechGrammarList_addFromString = function () { let r = cbb_wf.checkIllegal(this, "SpeechGrammarList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechGrammarList_addFromString, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechGrammarList_addFromUri = function () { let r = cbb_wf.checkIllegal(this, "SpeechGrammarList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechGrammarList_addFromUri, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechGrammarList_item = function () { let r = cbb_wf.checkIllegal(this, "SpeechGrammarList"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechGrammarList_item, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechRecognition_get_grammars = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'grammars'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_grammars, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_grammars = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'grammars', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_grammars, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_lang = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'lang'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_lang, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_lang = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'lang', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_lang, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_continuous = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'continuous'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_continuous, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_continuous = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'continuous', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_continuous, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_interimResults = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'interimResults'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_interimResults, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_interimResults = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'interimResults', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_interimResults, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_maxAlternatives = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'maxAlternatives'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_maxAlternatives, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_maxAlternatives = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'maxAlternatives', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_maxAlternatives, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onaudiostart = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaudiostart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onaudiostart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onaudiostart = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaudiostart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onaudiostart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onsoundstart = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsoundstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onsoundstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onsoundstart = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsoundstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onsoundstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onspeechstart = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onspeechstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onspeechstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onspeechstart = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onspeechstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onspeechstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onspeechend = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onspeechend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onspeechend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onspeechend = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onspeechend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onspeechend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onsoundend = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onsoundend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onsoundend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onsoundend = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onsoundend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onsoundend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onaudioend = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onaudioend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onaudioend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onaudioend = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onaudioend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onaudioend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onresult = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onresult'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onresult, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onresult = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onresult', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onresult, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onnomatch = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onnomatch'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onnomatch, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onnomatch = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onnomatch', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onnomatch, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onerror = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onerror'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onerror, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onerror = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onerror', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onerror, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onstart = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onstart'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onstart, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onstart = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onstart', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onstart, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_get_onend = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'onend'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_get_onend, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognition_set_onend = function (val) { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } cbb_wf.setValue(this, 'onend', val); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognition_set_onend, this =>", toString.call(this), ", val => ", '' + val, info); } } this.SpeechRecognition_abort = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechRecognition_abort, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechRecognition_start = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechRecognition_start, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechRecognition_stop = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognition"); let ctx = r[0]; if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result; if (cbb_wf.is_log) { cbb_wf.console.log("[*] SpeechRecognition_stop, this => ", toString.call(this), ", arguments => ", arguments, ", result => ", '' + result, " , 暂时未实现功能"); } return result; } this.SpeechRecognitionErrorEvent_get_error = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognitionErrorEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'error'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognitionErrorEvent_get_error, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognitionErrorEvent_get_message = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognitionErrorEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'message'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognitionErrorEvent_get_message, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognitionEvent_get_resultIndex = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognitionEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'resultIndex'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognitionEvent_get_resultIndex, this =>", toString.call(this), ", result => ", '' + result, info); } return result; } this.SpeechRecognitionEvent_get_results = function () { let r = cbb_wf.checkIllegal(this, "SpeechRecognitionEvent"); if (r[1]) { throw cbb_wf.newError.call(ctx, "Illegal invocation"); } let result = cbb_wf.getValue(this, 'results'); if (cbb_wf.is_log) { let info = typeof result === 'undefined' ? ", 暂时未实现功能" : ""; cbb_wf.console.log("[*] SpeechRecognitionEvent_get_results, this =>", toString.call(this), ", result => ", '' + result, info); } return result; }