test262/implementation-contributed/v8/mjsunit/d8/d8-worker-script.txt

9 lines
206 B
Plaintext

// Worker script used by d8-worker-script.js.
// This file is named `.txt` to prevent it being treated as a test itself.
onmessage = function(m) {
postMessage('DONE');
}
postMessage('Starting worker');