(c, content)
| 83 | } |
| 84 | |
| 85 | function test_eval(c, content) { |
| 86 | if (!is_whitespace(c)) return; |
| 87 | var str = c + c + "'" + content + "'" + c + c; |
| 88 | assertEquals(content, eval(str)); |
| 89 | } |
| 90 | |
| 91 | function test_stringtonumber(c, postfix) { |
| 92 | // Skip if prefix is a digit. |
no test coverage detected