Upload Kmake

This commit is contained in:
Gorochu
2026-05-26 23:36:42 -07:00
parent ba051b2f74
commit 555ec72358
41615 changed files with 13344630 additions and 1 deletions

View File

@ -0,0 +1,42 @@
Test that new.target can be inspected in Debugger.evaluateOnCallFrame
Running test: withExplicitUsage
{
className : Function
description : function C() { const fn = new.target; debugger; }
objectId : <objectId>
type : function
}
Running test: withDirectEval
{
className : Function
description : function D() { const fn = eval('new.target'); debugger; }
objectId : <objectId>
type : function
}
Running test: withoutExplicitUsage
{
className : ReferenceError
description : ReferenceError: .new.target is not defined at eval (eval at E (:1:1), <anonymous>:1:1) at new E (<anonymous>:13:3) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Running test: withInheritence
{
className : Function
description : class B extends A {}
objectId : <objectId>
type : function
}
Running test: withContextAllocatedNewTarget
{
className : Function
description : function F() { () => new.target; // context-allocate. debugger; }
objectId : <objectId>
type : function
}