summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/runtime-get-properties-and-accessor-expected.txt
blob: 648187c2b4217121b8582fd5d04450b1024df94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Runtime.getProperties for objects with accessor
title property with getter and setter:
{
    configurable : false
    enumerable : false
    get : {
        className : Function
        description : function nativeGetter() { [native code] }
        objectId : <objectId>
        type : function
    }
    isOwn : true
    name : title
    set : {
        className : Function
        description : function nativeSetter() { [native code] }
        objectId : <objectId>
        type : function
    }
}
title property with getter only:
{
    configurable : false
    enumerable : false
    get : {
        className : Function
        description : function nativeGetter() { [native code] }
        objectId : <objectId>
        type : function
    }
    isOwn : true
    name : title
}