2017-02-04 01:21:58 +00:00
|
|
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-05-19 00:35:45 +00:00
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Checks that takeHeapSnapshot uses empty accessing_context for access \
|
2017-02-04 01:21:58 +00:00
|
|
|
checks.');
|
|
|
|
|
2017-05-19 00:35:45 +00:00
|
|
|
contextGroup.addScript(`
|
2017-02-04 01:21:58 +00:00
|
|
|
function testFunction() {
|
2017-04-21 23:41:07 +00:00
|
|
|
var array = [ inspector.createObjectWithStrictCheck() ];
|
2017-02-04 01:21:58 +00:00
|
|
|
debugger;
|
|
|
|
}
|
|
|
|
//# sourceURL=test.js`);
|
|
|
|
|
|
|
|
Protocol.Debugger.onScriptParsed(message => {
|
|
|
|
Protocol.HeapProfiler.takeHeapSnapshot({ reportProgress: false })
|
|
|
|
.then(() => Protocol.Debugger.resume());
|
|
|
|
});
|
|
|
|
|
|
|
|
Protocol.Debugger.enable();
|
|
|
|
Protocol.HeapProfiler.enable();
|
|
|
|
Protocol.Runtime.evaluate({ expression: 'testFunction()' })
|
|
|
|
.then(() => InspectorTest.log('Successfully finished'))
|
|
|
|
.then(InspectorTest.completeTest);
|