bf505e6065
- Label as "bigint" in DevTools heap snapshot viewer - Treat as new primitive in injected-script-source - Show primitive value as property for BigIntObject - Adds the "n" suffix onto description, both with/without inspector being present Bug: v8:7486 Cq-Include-Trybots: luci.chromium.try:linux_chromium_rel_ng;master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_chromium_rel_ng Change-Id: I47a02e32f9bdd9124a6c91056965574ecd443867 Reviewed-on: https://chromium-review.googlesource.com/940804 Commit-Queue: Erik Luo <luoe@chromium.org> Reviewed-by: Adam Klein <adamk@chromium.org> Reviewed-by: Alexei Filippov <alph@chromium.org> Reviewed-by: Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#51855}
74 lines
2.2 KiB
JavaScript
74 lines
2.2 KiB
JavaScript
// 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.
|
|
// TODO(luoe): remove flag when it is on by default.
|
|
// Flags: --harmony-bigint
|
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Checks internal properties in Runtime.getProperties output');
|
|
|
|
contextGroup.addScript(`
|
|
function* foo() {
|
|
yield 1;
|
|
}
|
|
var gen1 = foo();
|
|
var gen2 = foo();
|
|
//# sourceURL=test.js`, 7, 26);
|
|
|
|
Protocol.Runtime.enable();
|
|
Protocol.Debugger.enable();
|
|
|
|
InspectorTest.runTestSuite([
|
|
function generatorFunction(next) {
|
|
checkExpression('(function* foo() { yield 1 })').then(next);
|
|
},
|
|
|
|
function regularFunction(next) {
|
|
checkExpression('(function foo() {})').then(next);
|
|
},
|
|
|
|
function boxedObjects(next) {
|
|
checkExpression('new Number(239)')
|
|
.then(() => checkExpression('new Boolean(false)'))
|
|
.then(() => checkExpression('new String(\'abc\')'))
|
|
.then(() => checkExpression('Object(Symbol(42))'))
|
|
.then(() => checkExpression("Object(BigInt(2))"))
|
|
.then(next);
|
|
},
|
|
|
|
function promise(next) {
|
|
checkExpression('Promise.resolve(42)')
|
|
.then(() => checkExpression('new Promise(() => undefined)'))
|
|
.then(next);
|
|
},
|
|
|
|
function generatorObject(next) {
|
|
checkExpression('gen1')
|
|
.then(() => checkExpression('gen1.next();gen1'))
|
|
.then(() => checkExpression('gen1.next();gen1'))
|
|
.then(next);
|
|
},
|
|
|
|
function generatorObjectDebuggerDisabled(next) {
|
|
Protocol.Debugger.disable()
|
|
.then(() => checkExpression('gen2'))
|
|
.then(() => checkExpression('gen2.next();gen2'))
|
|
.then(() => checkExpression('gen2.next();gen2'))
|
|
.then(next);
|
|
},
|
|
|
|
function iteratorObject(next) {
|
|
checkExpression('(new Map([[1,2]])).entries()')
|
|
.then(() => checkExpression('(new Set([[1,2]])).entries()'))
|
|
.then(next);
|
|
}
|
|
]);
|
|
|
|
function checkExpression(expression)
|
|
{
|
|
InspectorTest.log(`expression: ${expression}`);
|
|
return Protocol.Runtime.evaluate({ expression: expression })
|
|
.then(message => Protocol.Runtime.getProperties({ objectId: message.result.result.objectId }))
|
|
.then(message => { delete message.result.result; return message; })
|
|
.then(InspectorTest.logMessage);
|
|
}
|