mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-23 08:29:24 +08:00
63 lines
2.3 KiB
JavaScript
63 lines
2.3 KiB
JavaScript
// SpeechSynthesisEvent对象
|
|
|
|
SpeechSynthesisEvent = function SpeechSynthesisEvent() {
|
|
let arg = arguments[0];
|
|
if (arg != 'bobo' && (this instanceof SpeechSynthesisEvent)) {
|
|
return bodavm.toolsFunc.throwError("TypeError", "Failed to construct 'SpeechSynthesisEvent': 2 arguments required, but only 0 present.");
|
|
}
|
|
;
|
|
bodavm.toolsFunc.symbolProperty(this);
|
|
if (arg != 'bobo') {
|
|
console.log_copy('SpeechSynthesisEvent 实例化对象 --->', JSON.stringify_bo(arguments, function (k, v) {
|
|
if (v == window) {
|
|
return 'window';
|
|
} else {
|
|
return v;
|
|
}
|
|
}));
|
|
}
|
|
;
|
|
};
|
|
bodavm.toolsFunc.safeProto(SpeechSynthesisEvent, "SpeechSynthesisEvent");
|
|
SpeechSynthesisEvent.prototype.__proto__ = Event.prototype;
|
|
SpeechSynthesisEvent.__proto__ = Event;
|
|
bodavm.toolsFunc.defineProperty(SpeechSynthesisEvent.prototype, "utterance", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function utterance() {
|
|
return bodavm.toolsFunc.dispatch(this, SpeechSynthesisEvent.prototype, "SpeechSynthesisEvent", "utterance_get", arguments);
|
|
},
|
|
set: undefined
|
|
});
|
|
bodavm.toolsFunc.defineProperty(SpeechSynthesisEvent.prototype, "charIndex", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function charIndex() {
|
|
return bodavm.toolsFunc.dispatch(this, SpeechSynthesisEvent.prototype, "SpeechSynthesisEvent", "charIndex_get", arguments);
|
|
},
|
|
set: undefined
|
|
});
|
|
bodavm.toolsFunc.defineProperty(SpeechSynthesisEvent.prototype, "charLength", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function charLength() {
|
|
return bodavm.toolsFunc.dispatch(this, SpeechSynthesisEvent.prototype, "SpeechSynthesisEvent", "charLength_get", arguments);
|
|
},
|
|
set: undefined
|
|
});
|
|
bodavm.toolsFunc.defineProperty(SpeechSynthesisEvent.prototype, "elapsedTime", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function elapsedTime() {
|
|
return bodavm.toolsFunc.dispatch(this, SpeechSynthesisEvent.prototype, "SpeechSynthesisEvent", "elapsedTime_get", arguments);
|
|
},
|
|
set: undefined
|
|
});
|
|
bodavm.toolsFunc.defineProperty(SpeechSynthesisEvent.prototype, "name", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
get: function name() {
|
|
return bodavm.toolsFunc.dispatch(this, SpeechSynthesisEvent.prototype, "SpeechSynthesisEvent", "name_get", arguments);
|
|
},
|
|
set: undefined
|
|
}); |