blob: 1274d91ffec5030610d583acd9b7b22726b87cf2 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// 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
5if (this.Worker) {
6 function __f_0(byteLength) {
7 var __v_1 = new ArrayBuffer(byteLength);
8 var __v_5 = new Uint32Array(__v_1);
9 return __v_5;
10 }
11 var __v_6 = new Worker('onmessage = function() {}');
12 var __v_3 = __f_0(16);
13 __v_6.postMessage(__v_3);
14}