mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:51:35 +00:00

This commit upgrades V8 from 3.31.74.1 to 4.1.0.7. Despite the major version bump, there are no API or ABI changes, it's a bug fix release only. PR-URL: https://github.com/iojs/io.js/pull/490 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Kenan Sulayman <kenan@sly.mn> Reviewed-By: Rod Vagg <rod@vagg.org>
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
// 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.
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
function g() {
|
|
throw 0;
|
|
}
|
|
|
|
function f() {
|
|
g();
|
|
while (1) {}
|
|
}
|
|
|
|
assertThrows(function () { f(); });
|