| 12345678910111213141516171819202122232425262728293031 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- R"====(
- var $262 = {
- createRealm: function () {
- return WScript.LoadScript('', 'samethread').$262;
- },
- global: this,
- 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(); },
- },
- };
- )===="
|