summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
...
* BigDecimal: mark methods appeared in 2.8stepancheg2009-05-041-3/+9
|
* util.Random @since 2.8stepancheg2009-05-041-1/+3
|
* StringBuilder helper function to reduce lots of...Paul Phillips2009-05-049-107/+65
| | | | | StringBuilder helper function to reduce lots of code duplication.
* some cosmetic changes to make it compatible wit...Martin Odersky2009-05-041-3/+3
| | | | | some cosmetic changes to make it compatible with new collections
* Fixes for #839 and #840, and removed some dupli...Paul Phillips2009-05-042-55/+10
| | | | | Fixes for #839 and #840, and removed some duplicated code.
* Fix for #402.Paul Phillips2009-05-012-2/+2
|
* remedied a logic error I accidentally introducedPaul Phillips2009-05-011-5/+2
|
* Renamed overloaded toString variations througho...Paul Phillips2009-05-0120-93/+86
| | | | | | Renamed overloaded toString variations throughout scala.xml to buildString. Fixes bug #547, includes test case.
* Fix and test case for #1773.Paul Phillips2009-05-011-6/+16
|
* Pulled inappropriately output-producing method ...Paul Phillips2009-05-011-99/+50
| | | | | | | | Pulled inappropriately output-producing method overloads out of FactoryAdapter and placed in a trait, which could be mixed in if anyone really wanted them. Did some cleanup while in the neighborhood. Closes #1202.
* Implemented convenience methods for Xhtml as de...Paul Phillips2009-05-011-48/+72
| | | | | | Implemented convenience methods for Xhtml as described in #895. Cleaned it up and added documentation while in the neighborhood.
* Patch for #1118 appliedPaul Phillips2009-05-011-5/+11
|
* Factored common interface of UnprefixedAttribut...Paul Phillips2009-04-303-10/+81
| | | | | | | Factored common interface of UnprefixedAttribute and PrefixedAttribute out into an Attribute trait; added Attribute object with various convenience methods for creations; created extractors for all three.
* restoring unwisely removed toString variant.Paul Phillips2009-04-301-0/+2
|
* Fix for #901.Paul Phillips2009-04-301-1/+1
|
* Some minor cleanups made in the course of looki...Paul Phillips2009-04-302-93/+25
| | | | | | Some minor cleanups made in the course of looking into bugs #1488 and #1489.
* continuing fix for #1626 into trac commentsPaul Phillips2009-04-301-1/+1
|
* fix for #1712Paul Phillips2009-04-301-2/+1
|
* Two minor findbugs-discovered logic errors I've...Paul Phillips2009-04-302-5/+6
| | | | | | Two minor findbugs-discovered logic errors I've had in storage until I had xml write access.
* Reimplementation of XML encoding heuristics fro...Paul Phillips2009-04-301-133/+60
| | | | | Reimplementation of XML encoding heuristics from spec.
* Removed various now-unnecessary java 1.4 workar...Paul Phillips2009-04-296-68/+24
| | | | | | Removed various now-unnecessary java 1.4 workarounds and conditional behavior.
* Further fix to r17585: less hacky implementatio...Gilles Dubochet2009-04-291-10/+11
| | | | | | Further fix to r17585: less hacky implementation of "extended" subtyping for manifests.
* Minor refinements to pull parser, plus fix for ...Paul Phillips2009-04-292-19/+10
| | | | | Minor refinements to pull parser, plus fix for #1079.
* Updated scaladoc to show now using jvm box cache.Paul Phillips2009-04-281-2/+2
|
* Rewrote XML pull parser using exciting modern t...Paul Phillips2009-04-281-95/+118
| | | | | Rewrote XML pull parser using exciting modern techniques.
* Fixed documentation on ApplicationIulian Dragos2009-04-271-5/+14
|
* Fixed evidently wrong condition in subtyping te...Gilles Dubochet2009-04-271-1/+1
| | | | | | Fixed evidently wrong condition in subtyping test for class manifests. Still, the test makes no sense to me whatseoever.
* fix for #1594Paul Phillips2009-04-261-1/+2
|
* Restructured Enumeration to have many fewer pub...Paul Phillips2009-04-231-54/+18
| | | | | | | | | | | | Restructured Enumeration to have many fewer public members so people can import TheirEnum._ with less trepidation. The HOFs formerly in Enumeration were removed, but as they all merely forwarded to elements anyway, do this: object Foo extends Enumeration { val FOO, BAR = Value } import Foo._ Foo.elements filter (_ == FOO)
* Changed Flags object not to inherit from Enumer...Paul Phillips2009-04-221-0/+2
| | | | | | | Changed Flags object not to inherit from Enumeration; removed unused enumeration classes; fixed three other bugs which were being masked by all the bonus symbols in Flags.
* removed deprecation warningsmichelou2009-04-211-2/+3
|
* add serialization test, disabled patmat debug t...michelou2009-04-211-2/+4
| | | | | add serialization test, disabled patmat debug traces
* Bug 777: Applied Jamie's patchAlex Cruise2009-04-141-3/+8
|
* Modified all boxing methods to use java.lang.{P...Paul Phillips2009-04-084-172/+33
| | | | | | | Modified all boxing methods to use java.lang.{Primitive}.valueOf instead of instantiating a new object. Removed scala's boxing cache since all boxing now goes through the JVM's cache.
* Fixed Stack.push by applying Rich Dougherty's p...Iulian Dragos2009-04-071-1/+1
| | | | | Fixed Stack.push by applying Rich Dougherty's patch
* Removed all traces of ByNameFunctionIngo Maier2009-03-311-26/+0
|
* changed overloaing resolution to make Builders ...Martin Odersky2009-03-301-0/+2
| | | | | | | changed overloaing resolution to make Builders work. generalized companion object generation in Namers. Fixed a problem in Types that made the collection build crash.
* Library part does not build unless on java 7 wi...Iulian Dragos2009-03-301-5/+5
| | | | | Library part does not build unless on java 7 with invokedynamic.
* forgot to save last changesIulian Dragos2009-03-301-2/+2
|
* Code to support invoke-dynamic for structural t...Iulian Dragos2009-03-301-0/+42
| | | | | | Code to support invoke-dynamic for structural types. Not yet complete, built around the JSR 292 spec of December 2008.
* Correcting equality behaviour on IntMap.empty a...David MacIver2009-03-262-2/+12
| | | | | Correcting equality behaviour on IntMap.empty and LongMap.empty
* fixed ticket #1813 (BigDecimal implicits)michelou2009-03-231-0/+9
|
* Fixed a minor hashing error in OpenHashMap.David MacIver2009-03-221-1/+0
|
* reimplemented list union/intersect/diff as mult...michelou2009-03-201-27/+65
| | | | | reimplemented list union/intersect/diff as multiset ops
* The birth of the @switch and @tailrec annotations.Paul Phillips2009-03-165-11/+67
| | | | | | | | | | | | They are located in package scala.annotation. Also in this patch: * numerous test cases for both annotations * addition of @tailrec and @switch in a few strategic locations * fixes for critical section NewScanners methods which were not being compiled into switches, immediately proving the value of @switch * tail recursive implementations for Iterator.{ dropWhile, drop} and List.dropWhile tagged with @tailrec, closing bug #1376
* Various cleanups and redundancy-removal related...Paul Phillips2009-03-161-8/+16
| | | | | Various cleanups and redundancy-removal related to properties.
* More consolidation and duplication elimination ...Paul Phillips2009-03-131-5/+4
| | | | | More consolidation and duplication elimination in Properties.
* Bytecode generated for structural calls is impr...Gilles Dubochet2009-03-121-7/+15
| | | | | | Bytecode generated for structural calls is improved slightly. A test shows an improvement of roughly 5% for structural methods' call times.
* Refactored a pile of duplicated Properties code...Paul Phillips2009-03-101-42/+45
| | | | | | Refactored a pile of duplicated Properties code into a trait which is used by the library, compiler, and partest Properties objects.
* removed deprecated warning, updated svn props, ...michelou2009-03-1012-114/+129
| | | | | removed deprecated warning, updated svn props, cleaned up code