ebd070ec2f
- introduced ValueMirror interface, this interface contains methods to generate different protocol entities, - introduced DebugPropertyIterator, this iterator iterates through object properties in the following order: exotic indices, enumerable strings, all other properties, - removed all injected script infra, e.g. closure compiler, R=dgozman@chromium.org TBR=yangguo@chromium.org Bug: chromium:595206 Change-Id: I030fdb3a80074ca6edd4749f86b39b590776ae6f Reviewed-on: https://chromium-review.googlesource.com/c/1310056 Reviewed-by: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Cr-Commit-Position: refs/heads/master@{#57181}
34 lines
747 B
Plaintext
34 lines
747 B
Plaintext
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
|
|
}
|