arrays-slow-4.js (104B)
1 // for-of on an empty slow array does nothing. 2 3 var a = []; 4 a.slow = true; 5 for (var x of a) 6 fail();