Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4502986
test_minimal.cjs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
548 B
Referenced Files
None
Subscribers
None
test_minimal.cjs
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Sun, May 3, 9:19 AM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
522650
Default Alt Text
test_minimal.cjs (548 B)
Attached To
Mode
rANT Ant
Attached
Detach File
Event Timeline
Log In to Comment