blob: 3a4b665df13f63e3fd43316e0fc22b3336f7f121 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
LR"====(
var $262 = {
agent: {
start: function (src) {
WScript.LoadScript(
`
$262 = {
agent:{
receiveBroadcast: function(callback){ WScript.ReceiveBroadcast(callback); },
report: function(value){ WScript.Report(value); },
leaving: function(){ WScript.Leaving(); }
}
};
${src}
`, 'crossthread');
},
broadcast: function (sab) { WScript.Broadcast(sab); },
sleep: function (timeout) { WScript.Sleep(timeout); },
getReport: function () { return WScript.GetReport(); },
}
}
)===="