Files
Kmake/deps/v8/test/inspector/runtime/runtime-get-properties-and-accessor-expected.txt

40 lines
900 B
Plaintext
Raw Normal View History

2026-05-26 23:36:42 -07:00
Runtime.getProperties for objects with accessor
title property with getter and setter:
{
configurable : true
enumerable : true
get : {
className : Function
description : function () { [native code] }
objectId : <objectId>
type : function
}
isOwn : true
name : title
set : {
className : Function
description : function () { [native code] }
objectId : <objectId>
type : function
}
}
title property with getter only:
{
configurable : true
enumerable : true
get : {
className : Function
description : function () { [native code] }
objectId : <objectId>
type : function
}
isOwn : true
name : title
set : {
className : Function
description : function () { [native code] }
objectId : <objectId>
type : function
}
}