blob: 1ca3649aa06a9b28bf38535b68cf8753f8574801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Debugger.Memory.prototype.takeCensus returns a value of an appropriate shape.
var dbg = new Debugger;
function checkProperties(census) {
assertEq(typeof census, 'object');
for (prop of Object.getOwnPropertyNames(census)) {
var desc = Object.getOwnPropertyDescriptor(census, prop);
assertEq(desc.enumerable, true);
assertEq(desc.configurable, true);
assertEq(desc.writable, true);
if (typeof desc.value === 'object')
checkProperties(desc.value);
else
assertEq(typeof desc.value, 'number');
}
}
checkProperties(dbg.memory.takeCensus());
var g = newGlobal();
dbg.addDebuggee(g);
checkProperties(dbg.memory.takeCensus());
|