Espruino/tests/test_garbage_collection.js
Michael Duerinckx 7f5308590b Rename numbered tests to something more descriptive - closes #16
test077 is the only one I really couldn't figure out what it was meant
to test.
2014-03-01 22:15:28 +00:00

13 lines
244 B
JavaScript

// Garbage collection test
var a = {};
for (i=0;i<10;i++) {
a = {"12345678901234567890":"asdfghjkl;zxcvbnm,wertyuioiuytredscfvghjkmnbvfdrtyujknbvcfdrtyuikmnbgv"};
// create loop
a.b = { c : { d : a } };
a = undefined;
}
result = 1;