Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // Test flat string replacement, per ECMAScriptv5 15.5.4.11.
2 assertEq("1+2".replace("1+2", "$&+3"), "1+2+3");
3 assertEq(")".replace(")","*$&*"), "*)*");