var BUGNUMBER = 1509768; var summary = "String#replace with an empty string pattern on a rope should prepend the replacement string.";
print(BUGNUMBER + ": " + summary);
// Rope is created when the string length >= 25. // // This testcase depends on that condition to reliably test the code for // String#replace on a rope. // // Please rewrite this testcase when the following assertion fails.
assertEq(isRope("a".repeat(24)), false);
assertEq(isRope("a".repeat(25)), true);
// Not a rope.
assertEq("a".repeat(24).replace("", "foo"), "foo" + "a".repeat(24));
assertEq("a".repeat(24).replace("", ""), "a".repeat(24));
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.