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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
747 B
Plaintext
Raw Normal View History

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
}