OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 if (this.Worker) { | |
6 var __v_8 = | |
7 `var __v_9 = new Worker('postMessage(42)'); | |
8 onmessage = function(parentMsg) { | |
9 __v_9.postMessage(parentMsg); | |
10 };`; | |
11 var __v_9 = new Worker(__v_8); | |
12 __v_9.postMessage(9); | |
13 } | |
OLD | NEW |