summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #2095.Iulian Dragos2009-09-041-0/+2
|
* Fixed #1857.Iulian Dragos2009-09-041-1/+2
|
* Fixed #2317.Iulian Dragos2009-09-041-0/+5
|
* Sabbus can pack locker as JARs, for use in IDEs.Gilles Dubochet2009-09-041-4/+48
|
* Getting docs.comp building again.Paul Phillips2009-09-032-5/+6
|
* Fixed accesses to Scala inner classes from Java.Iulian Dragos2009-09-031-1/+1
|
* Rewrite of the actor MessageQueue, adding a tra...Paul Phillips2009-09-022-123/+85
| | | | | Rewrite of the actor MessageQueue, adding a tracing facility.
* Added an alias for '-optimize' and fixed the op...Iulian Dragos2009-09-022-2/+6
| | | | | Added an alias for '-optimize' and fixed the optimized build.
* fixed #2266 (partially) and #2305Adriaan Moors2009-09-021-1/+4
|
* Moved test case for now-fixed #2027 into files.Paul Phillips2009-09-012-2/+2
|
* A few minor bugfixes for recent work.Paul Phillips2009-09-013-12/+12
|
* Since I began using scala I have sought an appe...Paul Phillips2009-09-011-1/+28
| | | | | | | | Since I began using scala I have sought an appealing null coalescing operator. Only now in this dark hour is it upon us! I should find a better place for it, and the rest of my utility functions for dealing sensibly with null.
* Fixed #2117.Iulian Dragos2009-09-011-1/+1
|
* Fixed #2123.Iulian Dragos2009-09-012-1/+6
|
* Fixed #2167.Iulian Dragos2009-09-011-1/+5
|
* Further organization of File/Path/Directory.Paul Phillips2009-09-013-4/+46
| | | | | copyFile method.
* Fixed #1894.Iulian Dragos2009-09-011-0/+3
|
* Changed createDirectory and createFile to accept aPaul Phillips2009-09-016-22/+18
| | | | | | failIfExists argument (defaults to false) and eliminated the very short-lived ensureDirectory and ensureFile.
* Factored the InputStream-based implementations ...Paul Phillips2009-09-014-65/+119
| | | | | | Factored the InputStream-based implementations out of File into scala.io.Streamable, where they will eventually be reused by Source.
* More cleanup in nsc.io, and a toByteArray() met...Paul Phillips2009-09-015-82/+62
| | | | | More cleanup in nsc.io, and a toByteArray() method for File.
* patch by james matlik: Enable ScalaTool to gene...Lukas Rytz2009-09-011-15/+50
| | | | | | patch by james matlik: Enable ScalaTool to generate tool classpaths for general purpose scripts
* A true refactoring adventure as I attempted to ...Paul Phillips2009-09-012-202/+165
| | | | | | | | A true refactoring adventure as I attempted to corner the large amount of duplicated code in ZipArchive. The results are definitely overengineered but the refinement will improve as I expand further into the AbstractFile hierarchy.
* One more try to unbreak fsc all the way.Paul Phillips2009-08-315-3/+8
|
* Unbreaking fsc with ensureDirectory().Paul Phillips2009-08-313-3/+7
|
* Fixed #1572.Iulian Dragos2009-08-312-5/+10
|
* Modernizing bits of scala.tools.nsc.io and incr...Paul Phillips2009-08-313-213/+169
| | | | | | | Modernizing bits of scala.tools.nsc.io and incrementally introducing some of scala.io to further flesh out what the File interface will require.
* Fixed #1539.Iulian Dragos2009-08-314-20/+29
|
* Brushing some of the cobwebs off the denizens o...Paul Phillips2009-08-3113-234/+85
| | | | | | | Brushing some of the cobwebs off the denizens of scala.xml. I am removing bits of XML code which are clearly unfinished and which nothing anywhere in the compiler or library uses.
* Starting some cleanup deeper in scala.xml in th...Paul Phillips2009-08-313-115/+44
| | | | | | Starting some cleanup deeper in scala.xml in the hopes of reducing the number of XML-related dependencies.
* Further work creating pure interfaces for the c...Paul Phillips2009-08-316-4/+110
| | | | | | | Further work creating pure interfaces for the collections so we can validate their contents. Also fixed an overly loose upper bound in SequenceTemplate.
* Unbroke the build, sorry about that.Paul Phillips2009-08-312-2/+2
|
* A little smoothing the last patch with codecs a...Paul Phillips2009-08-302-3/+12
| | | | | A little smoothing the last patch with codecs and mkdirs().
* Large Path/File/Directory checkin.Paul Phillips2009-08-3014-191/+281
| | | | | | | | of the functionality that one can straightforwardly obtain from the capabilities of java.io.File in java 5, but written with an eye on the significantly more capable (if not significantly more appealing) nio2 API in openjdk.
* Blessing Iterator with another method from the ...Paul Phillips2009-08-301-1/+17
| | | | | Blessing Iterator with another method from the Traversables.
* Test case for #1560, which was fixed sometime inPaul Phillips2009-08-301-0/+11
| | | | | the last few weeks.
* Some notes on the random shuffle implementation.Paul Phillips2009-08-301-2/+25
|
* Tightening the character range in random string...Paul Phillips2009-08-301-4/+16
| | | | | Tightening the character range in random string generation.
* A few cleanups, and toXXX methods for BigDecima...Paul Phillips2009-08-294-11/+35
| | | | | | A few cleanups, and toXXX methods for BigDecimal and BigInteger so all the numeric types have the same conversion methods.
* Fix for #2304.Paul Phillips2009-08-291-1/+1
|
* Moves sorting into Iterable, and adds a conveni...Paul Phillips2009-08-294-28/+33
| | | | | | Moves sorting into Iterable, and adds a convenience creation method to the Ordering object.
* This is the beginning of a preventative effort ...Paul Phillips2009-08-297-8/+191
| | | | | | | | | | This is the beginning of a preventative effort to keep the collections organization from drifting too far away from internal consistency. For the various Proxy and Forwarder classes to be reliable and not missing methods here and there, we need all methods defined in a canonical location. I started organizing in collection/interfaces for the time being.
* Moved zip/zipAll/zipWithIndex to Iterable and a...Paul Phillips2009-08-289-90/+129
| | | | | | | Moved zip/zipAll/zipWithIndex to Iterable and attempts to get all the views and etc working correctly and consistently. Addresses ticket #2301 and then some.
* Added a times method to RichInt.Paul Phillips2009-08-281-0/+17
| | | | | | | | against in the past but I collected performance numbers on every available approach to repeating something and this is by far the winning combination in speed and clarity. Elaboration available if anyone still feels strongly negative about it.
* Opening, experimental implementation of StringV...Paul Phillips2009-08-281-0/+215
| | | | | | | Opening, experimental implementation of StringVector, since I wrote all this yesterday and it'll be useful whether or not we the current compiler-magic proposal for Arrays and Strings pans out.
* I hope to have fixed the optimized build.Iulian Dragos2009-08-282-3/+7
|
* A bunch of cleanups around Ordered & Ordering, ...Paul Phillips2009-08-284-61/+36
| | | | | | A bunch of cleanups around Ordered & Ordering, and provided PartialOrdering with the "partial" part it had never been given.
* Removed some code which has been commented out ...Paul Phillips2009-08-281-19/+0
| | | | | | Removed some code which has been commented out since Apr 8 2004. I say 5.5 years is long enough to warrant a fresh start.
* Fix and test case for #2276.Paul Phillips2009-08-283-12/+36
|
* Put a default for ANT_OPTS in build.xml.Paul Phillips2009-08-281-6/+3
|
* Test case for #2250, which Martin fixed in r18589.Paul Phillips2009-08-271-0/+12
|