summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/runtime-get-properties-and-accessor-expected.txt
blob: 8789f64ba6f6921ae973e54592e252a83f3f4b2a (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 : 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
}