mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 14:39:17 +00:00

Pick up latest commit from the 5.4-lkgr branch. deps: edit V8 gitignore to allow trace event copy deps: update V8 trace event to 315bf1e2d45be7d53346c31cfcc37424a32c30c8 deps: edit V8 gitignore to allow gtest_prod.h copy deps: update V8 gtest to 6f8a66431cb592dad629028a50b3dd418a408c87 PR-URL: https://github.com/nodejs/node/pull/8317 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
53 lines
1.8 KiB
JavaScript
53 lines
1.8 KiB
JavaScript
// Copyright 2016 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.
|
|
|
|
var thrower = { [Symbol.toPrimitive]: () => FAIL };
|
|
|
|
// Tests that a native conversion function is included in the
|
|
// stack trace.
|
|
function testTraceNativeConversion(nativeFunc) {
|
|
var nativeFuncName = nativeFunc.name;
|
|
try {
|
|
nativeFunc(thrower);
|
|
assertUnreachable(nativeFuncName);
|
|
} catch (e) {
|
|
assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
|
|
}
|
|
}
|
|
|
|
// C++ builtins.
|
|
testTraceNativeConversion(Math.acos);
|
|
testTraceNativeConversion(Math.asin);
|
|
testTraceNativeConversion(Math.fround);
|
|
testTraceNativeConversion(Math.imul);
|
|
|
|
|
|
function testBuiltinInStackTrace(script, expectedString) {
|
|
try {
|
|
eval(script);
|
|
assertUnreachable(expectedString);
|
|
} catch (e) {
|
|
assertTrue(e.stack.indexOf(expectedString) >= 0, expectedString);
|
|
}
|
|
}
|
|
|
|
// C++ builtins.
|
|
testBuiltinInStackTrace("Boolean.prototype.toString.call(thrower);",
|
|
"at Object.toString");
|
|
|
|
// Constructor builtins.
|
|
testBuiltinInStackTrace("new Date(thrower);", "at new Date");
|
|
|
|
// Ensure we correctly pick up the receiver's string tag.
|
|
testBuiltinInStackTrace("Math.acos(thrower);", "at Math.acos");
|
|
testBuiltinInStackTrace("Math.asin(thrower);", "at Math.asin");
|
|
testBuiltinInStackTrace("Math.fround(thrower);", "at Math.fround");
|
|
testBuiltinInStackTrace("Math.imul(thrower);", "at Math.imul");
|
|
|
|
// As above, but function passed as an argument and then called.
|
|
testBuiltinInStackTrace("((f, x) => f(x))(Math.acos, thrower);", "at acos");
|
|
testBuiltinInStackTrace("((f, x) => f(x))(Math.asin, thrower);", "at asin");
|
|
testBuiltinInStackTrace("((f, x) => f(x))(Math.fround, thrower);", "at fround");
|
|
testBuiltinInStackTrace("((f, x) => f(x))(Math.imul, thrower);", "at imul");
|