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 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} 15