| OLD | NEW |
| (Empty) |
| 1 This test checks that functions re-string-ify in a way that is syntactically com
patible with concatenation. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 FAIL (function(){return}).toString() should be function () {return;}. Was functi
on (){return}. | |
| 7 FAIL (function(){return }).toString() should be function () {return; }. Was func
tion (){return }. | |
| 8 FAIL (function(){return | |
| 9 }).toString() should be function () {return; | |
| 10 }. Was function (){return | |
| 11 }. | |
| 12 FAIL (function(){}).toString() should be function () {}. Was function (){}. | |
| 13 FAIL (function(){ }).toString() should be function () { }. Was function (){ }. | |
| 14 PASS successfullyParsed is true | |
| 15 | |
| 16 TEST COMPLETE | |
| 17 | |
| OLD | NEW |