(length)
| 32 | // on the following tests. |
| 33 | var __sequence = 0; |
| 34 | function make_array_string(length) { |
| 35 | this.__sequence = this.__sequence + 1; |
| 36 | return "/* " + this.__sequence + " */ new Array(" + length + ");"; |
| 37 | } |
| 38 | function make_array(length) { |
| 39 | return eval(make_array_string(length)); |
| 40 | } |