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,99 @@
Evaluate getting private member from Smi
Running test: evaluatePrivateMember
Debugger.evaluateOnCallFrame: `(1).#test = 1`
{
className : TypeError
description : TypeError: Cannot access private name #test from 1 at eval (eval at <anonymous> (:1:1), <anonymous>:1:11) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(1).#test`
{
className : TypeError
description : TypeError: Cannot access private name #test from 1 at eval (eval at <anonymous> (:1:1), <anonymous>:1:1) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(null).#test = 1`
{
className : TypeError
description : TypeError: Cannot access private name #test from null at eval (eval at <anonymous> (:1:1), <anonymous>:1:14) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(null).#test`
{
className : TypeError
description : TypeError: Cannot access private name #test from null at eval (eval at <anonymous> (:1:1), <anonymous>:1:1) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(undefined).#test = 1`
{
className : TypeError
description : TypeError: Cannot access private name #test from undefined at eval (eval at <anonymous> (:1:1), <anonymous>:1:19) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(undefined).#test`
{
className : TypeError
description : TypeError: Cannot access private name #test from undefined at eval (eval at <anonymous> (:1:1), <anonymous>:1:1) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(true).#test = 1`
{
className : TypeError
description : TypeError: Cannot access private name #test from true at eval (eval at <anonymous> (:1:1), <anonymous>:1:14) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `(true).#test`
{
className : TypeError
description : TypeError: Cannot access private name #test from true at eval (eval at <anonymous> (:1:1), <anonymous>:1:1) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `("str").#test = 1`
{
className : TypeError
description : TypeError: Cannot access private name #test from str at eval (eval at <anonymous> (:1:1), <anonymous>:1:15) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `("str").#test`
{
className : TypeError
description : TypeError: Cannot access private name #test from str at eval (eval at <anonymous> (:1:1), <anonymous>:1:1) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `Symbol("str").#test = 1`
{
className : TypeError
description : TypeError: Cannot access private name #test from Symbol(str) at eval (eval at <anonymous> (:1:1), <anonymous>:1:21) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}
Debugger.evaluateOnCallFrame: `Symbol("str").#test`
{
className : TypeError
description : TypeError: Cannot access private name #test from Symbol(str) at eval (eval at <anonymous> (:1:1), <anonymous>:1:1) at <anonymous>:1:1
objectId : <objectId>
subtype : error
type : object
}