Files
ask262/engine262/lib-src/node/verify-ask262-debug.mts
T
bendtherules aa9c875006 feat: add startTrace/stopTrace to control mark capture
Implemented a capture flag in `Ask262Debug` to enable/disable marking.
- Added `_captureEnabled` property and related logic in `mark()`.
- Introduced `startTrace()` and `stopTrace()` methods to toggle capture.
- Updated verification script to start tracing, run tests, stop tracing, and assert that the `Array.prototype.every` section is captured and marked important.
2026-04-08 16:03:09 +05:30

85 lines
2.7 KiB
TypeScript

#!/usr/bin/env node
/**
* Verification script for ask262Debug module.
* Tests that the module is properly exported and captures spec section marks.
*/
import {
ask262Debug, Agent, ManagedRealm, setSurroundingAgent,
OrdinaryObjectCreate, CreateBuiltinFunction, CreateDataProperty, Value, skipDebugger,
} from '#self';
console.log('=== ask262Debug Verification ===\n');
// 1. Check export exists
console.log('1. Checking export...');
if (!ask262Debug) {
console.error('FAIL: ask262Debug not exported');
process.exit(1);
}
console.log(' ✓ ask262Debug exported\n');
// 2. Run code that hits known spec sections
console.log('2. Executing test code...');
const agent = new Agent();
setSurroundingAgent(agent);
const realm = new ManagedRealm();
realm.scope(() => {
const debugObj = OrdinaryObjectCreate(agent.intrinsic('%Object.prototype%'));
skipDebugger(CreateDataProperty(realm.GlobalObject, Value('ask262Debug'), debugObj));
const startImportant = CreateBuiltinFunction(() => {
ask262Debug.startImportant();
return Value.undefined;
}, 0, Value('startImportant'), []);
skipDebugger(CreateDataProperty(debugObj, Value('startImportant'), startImportant));
const stopImportant = CreateBuiltinFunction(() => {
ask262Debug.stopImportant();
return Value.undefined;
}, 0, Value('stopImportant'), []);
skipDebugger(CreateDataProperty(debugObj, Value('stopImportant'), stopImportant));
});
ask262Debug.startTrace();
realm.evaluateScript(`
// Array.prototype.every - should hit sec-array.prototype.every
ask262Debug.startImportant();
[1, 2, 3].every(x => x > 0);
ask262Debug.stopImportant();
// Proxy creation - should hit sec-proxycreate or similar
new Proxy({}, {});
`);
ask262Debug.stopTrace();
// 3. Verify marks were captured
console.log('3. Checking marks...');
const marks = ask262Debug.marks;
console.log(` Captured ${marks.length} unique marks\n`);
if (marks.length === 0) {
console.error('FAIL: No marks captured');
process.exit(1);
}
// 3a. Assert that Array.prototype.every section is found and marked important
const everyMark = marks.find((m) => m.sectionIds.some((id) => id.includes('array.prototype.every')));
if (!everyMark) {
console.error('FAIL: sec-array.prototype.every not found in marks');
process.exit(1);
}
if (!everyMark.important) {
console.error('FAIL: sec-array.prototype.every found but not marked as important');
process.exit(1);
}
console.log(' ✓ Found sec-array.prototype.every (marked as important)\n');
// 4. Show sample marks
console.log('4. Sample marks:');
marks.slice(0, 5).forEach((m, i) => {
console.log(` [${i}] ${m.sectionIds.join(', ')} @ ${m.fileRelativePath}:${m.lineNumber}${m.important ? ' [important]' : ''}`);
});
console.log('=== All Checks Passed ===');