Lines Matching defs:self
56 let protocol = self.isSecureContext ? "wss" : "ws";
57 let port = self.isSecureContext? "{{ports[wss][0]}}" : "{{ports[ws][0]}}";
277 self.SendChannel = SendChannel;
329 self.channel = function() {
343 self.global_channel = function() {
357 self.start_global_channel = async function() {
358 let channel = self.global_channel();
367 self.close_all_channel_sockets = async function() {
546 let [recvChannel, respChannel] = self.channel();
626 self.RemoteGlobal = RemoteGlobal;
669 if (typeof window == "object" && window === self) {
740 self.RemoteObject = RemoteObject;
1014 if (item.value.type in self &&
1015 typeof self[item.value.type] === "function") {
1016 result = new self[item.value.type](item.value.message);