js/src/jit-test/tests/collections/Set-iterator-gc-3.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/jit-test/tests/collections/Set-iterator-gc-3.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +// GC in nested for-loops is safe.
     1.5 +
     1.6 +var x;
     1.7 +for (x of Set([1]))
     1.8 +    for (x of Set([1]))
     1.9 +        for (x of Set([1]))
    1.10 +            for (x of Set([1]))
    1.11 +                for (x of Set([1]))
    1.12 +                    for (x of Set([1]))
    1.13 +                        for (x of Set([1]))
    1.14 +                            for (x of Set([1]))
    1.15 +                                for (x of Set([1]))
    1.16 +                                    for (x of Set([1]))
    1.17 +                                        for (x of Set([1]))
    1.18 +                                            for (x of Set([1]))
    1.19 +                                                for (x of Set([1]))
    1.20 +                                                    for (x of Set([1]))
    1.21 +                                                        for (x of Set([1]))
    1.22 +                                                            for (x of Set([1]))
    1.23 +                                                                gc();

mercurial