Page MenuHomePhorge

test_minimal.cjs
No OneTemporary

Size
548 B
Referenced Files
None
Subscribers
None

test_minimal.cjs

console.log('Testing recursive string assignment with objects');
function testRecursion(depth, params) {
if (depth >= 10) return 'done';
let paramValue = '';
// This assignment causes parser corruption in certain contexts
paramValue = 'test';
if (paramValue !== '') {
params['test' + depth] = paramValue;
const result = testRecursion(depth + 1, params);
delete params['test' + depth];
return result;
}
return 'failed';
}
const params = {};
const result = testRecursion(0, params);
console.log('Result:', result);

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 9:19 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
522650
Default Alt Text
test_minimal.cjs (548 B)

Event Timeline