mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
adc2f08c17
This commit adds new option to "Worker" Web API that allows to configure permissions. New "Worker.deno.permissions" option can be used to define limited permissions to the worker thread by either: - inherit set of parent thread permissions - use limited subset of parent thread permissions - revoke all permissions (full sandbox) In order to achieve this functionality "CliModuleLoader" was modified to accept "initial permissions", which are used for top module loading (ie. uses parent thread permission set to load top level module of a worker).
19 lines
321 B
JavaScript
19 lines
321 B
JavaScript
let thrown = false;
|
|
|
|
if (self.name !== "") {
|
|
throw Error(`Bad worker name: ${self.name}, expected empty string.`);
|
|
}
|
|
|
|
onmessage = function (e) {
|
|
if (thrown === false) {
|
|
thrown = true;
|
|
throw new SyntaxError("[test error]");
|
|
}
|
|
|
|
postMessage(e.data);
|
|
close();
|
|
};
|
|
|
|
onerror = function () {
|
|
return false;
|
|
};
|