Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / let-for-in.js
blobe464500f996112408f14388ddb22da793f8c35f9
1 function foo(o) {
2     var count = 0;
3     for (let p in o) {
4         if (o[p])
5             count++;
6     }
7     return count;
9 noInline(foo);
11 function Bar() {
12     this.line = 1;
13     this.column = 2;
14     this.stack = "str";
17 var total = 0;
18 for (let j = 0; j < 100000; ++j)
19     total += foo(new Bar);
20 if (total != 300000)
21     throw new Error("Bad result: " + total);