Home | History | Annotate | Download | only in regress

Lines Matching full:no_touch

35 var no_touch = 0;
36 eval('"use strict"; var no_touch = 1;');
37 assertSame(0, no_touch);
41 var no_touch = 0;
42 evil('"use strict"; var no_touch = 2;');
43 assertSame(0, no_touch);
47 var no_touch = 0;
48 eval('var no_touch = 3;');
49 assertSame(3, no_touch);
53 var no_touch = 0;
54 evil('var no_touch = 4;');
55 assertSame(4, no_touch);
59 var no_touch = 0;
61 var no_touch = 0;
62 eval('"use strict"; var no_touch = 5;');
63 assertSame(0, no_touch);
65 assertSame(0, no_touch);
69 var no_touch = 0;
71 var no_touch = 0;
72 evil('"use strict"; var no_touch = 6;');
73 assertSame(0, no_touch);
75 assertSame(0, no_touch);
79 var no_touch = 0;
81 var no_touch = 0;
82 eval('var no_touch = 7;');
83 assertSame(7, no_touch);
85 assertSame(0, no_touch);
89 var no_touch = 0;
91 var no_touch = 0;
92 evil('var no_touch = 8;');
93 assertSame(0, no_touch);
95 assertSame(8, no_touch);
99 var no_touch = 0;
102 var no_touch = 0;
103 eval('"use strict"; var no_touch = 9;');
104 assertSame(0, no_touch);
106 assertSame(0, no_touch);
110 var no_touch = 0;
113 var no_touch = 0;
114 evil('"use strict"; var no_touch = 10;');
115 assertSame(0, no_touch);
117 assertSame(0, no_touch);
121 var no_touch = 0;
124 var no_touch = 0;
125 eval('var no_touch = 11;');
126 assertSame(0, no_touch);
128 assertSame(0, no_touch);
132 var no_touch = 0;
135 var no_touch = 0;
136 evil('var no_touch = 12;');
137 assertSame(0, no_touch);
139 assertSame(12, no_touch);