v8/test/inspector/regress/regress-crbug-1207867-expected.txt
Benedikt Meurer 203f527619 [inspector] Side-effect free FunctionMirror descriptions.
Drive-by-fix: Remove command line API fn.toString() override, which was
still in place from the early days when much of the inspector was
implemented in JavaScript.

Fixed: chromium:1207867
Bug: chromium:1206620
Change-Id: I8429f109da5f021f729f184fd824160a24e60897
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2887508
Auto-Submit: Benedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: Yang Guo <yangguo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74516}
2021-05-12 09:30:37 +00:00

42 lines
856 B
Plaintext

Regression test for crbug/1207867
Running test: testFunctionDescription
{
className : Function
description : function fun(x) { return x; }
objectId : <objectId>
type : function
}
Running test: testArrowFunctionDescription
{
className : Function
description : x => x
objectId : <objectId>
type : function
}
Running test: testBoundFunctionDescription
{
className : Function
description : function () { [native code] }
objectId : <objectId>
type : function
}
Running test: testAsyncFunctionDescription
{
className : AsyncFunction
description : async function afun(x) { await x; }
objectId : <objectId>
type : function
}
Running test: testNativeFunctionDescription
{
className : Function
description : function map() { [native code] }
objectId : <objectId>
type : function
}