Home | History | Annotate | Download | only in regress

Lines Matching refs:for

10 for (const x of [1,2,3]) {
21 for (const z of [x, x+1, x+2]) {
28 for (const x of [q, q+1, q+2]) {
35 for (const x = 1; z < 2; z++) {
42 for (const x in [1,2,3]) {
47 assertThrows("'use strict'; for (const x in [1,2,3]) { x++ }", TypeError);
52 for (const x of [1,2,3]) {
59 for (const q of [x, x+1, x+2]) {
66 for (const x of [q, q+1, q+2]) {
72 for (const x in [1,2,3]) {