()
| 93 | // on the following tests. |
| 94 | var __sequence = 0; |
| 95 | function make_array_string() { |
| 96 | this.__sequence = this.__sequence + 1; |
| 97 | return "/* " + this.__sequence + " */ [0, 0, 0];" |
| 98 | } |
| 99 | function make_array() { |
| 100 | return eval(make_array_string()); |
| 101 | } |