2015-06-29 15:53:08 +00:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
if (this.Worker) {
|
|
|
|
Function.prototype.toString = "foo";
|
|
|
|
function __f_7() {}
|
2015-07-01 16:41:48 +00:00
|
|
|
assertThrows(function() { var __v_5 = new Worker(__f_7.toString()); });
|
2015-06-29 15:53:08 +00:00
|
|
|
}
|