summaryrefslogtreecommitdiff
path: root/test/files/run/stringbuilder.scala
Commit message (Collapse)AuthorAgeFilesLines
* Begone t1737...Hubert Plociniczak2011-11-021-7/+7
|
* Renamed Application to App.Martin Odersky2011-02-211-1/+1
|
* StringBuilder no longer violates the Seq revers...Paul Phillips2010-04-241-0/+8
| | | | | | | | | | | | StringBuilder no longer violates the Seq reverse contract: it returns a new StringBuilder. The behavior formerly found in reverse (updates in place) is now available in reverseContents. Migration warning on reverse. Closes #3327. Also did some StringBuilder rewriting as per discussion with odersky. And took a cleaver to parts of the documentation to get to the good parts a little faster. Review by community.
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-241-1/+1
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.
* KMP implementation for StringBuilder and test c...Paul Phillips2009-05-201-0/+32
KMP implementation for StringBuilder and test case. Repaired long-standing infinite loop in lastIndexOf.