Home | History | Annotate | Download | only in regress

Lines Matching full:no_touch

36 var no_touch = 0;
37 eval('"use strict"; var no_touch = 1;');
38 assertSame(0, no_touch);
42 var no_touch = 0;
43 evil('"use strict"; var no_touch = 2;');
44 assertSame(0, no_touch);
48 var no_touch = 0;
49 eval('var no_touch = 3;');
50 assertSame(0, no_touch);
54 var no_touch = 0;
55 evil('var no_touch = 4;');
56 assertSame(4, no_touch);
60 var no_touch = 0;
62 var no_touch = 0;
63 eval('"use strict"; var no_touch = 5;');
64 assertSame(0, no_touch);
66 assertSame(0, no_touch);
70 var no_touch = 0;
72 var no_touch = 0;
73 evil('"use strict"; var no_touch = 6;');
74 assertSame(0, no_touch);
76 assertSame(0, no_touch);
80 var no_touch = 0;
82 var no_touch = 0;
83 eval('var no_touch = 7;');
84 assertSame(0, no_touch);
86 assertSame(0, no_touch);
90 var no_touch = 0;
92 var no_touch = 0;
93 evil('var no_touch = 8;');
94 assertSame(0, no_touch);
96 assertSame(8, no_touch);
100 var no_touch = 0;
103 var no_touch = 0;
104 eval('"use strict"; var no_touch = 9;');
105 assertSame(0, no_touch);
107 assertSame(0, no_touch);
111 var no_touch = 0;
114 var no_touch = 0;
115 evil('"use strict"; var no_touch = 10;');
116 assertSame(0, no_touch);
118 assertSame(0, no_touch);
122 var no_touch = 0;
125 var no_touch = 0;
126 eval('var no_touch = 11;');
127 assertSame(0, no_touch);
129 assertSame(0, no_touch);
133 var no_touch = 0;
136 var no_touch = 0;
137 evil('var no_touch = 12;');
138 assertSame(0, no_touch);
140 assertSame(12, no_touch);