summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Renamed overloaded toString variations througho...Paul Phillips2009-05-011-0/+3
| | | | | | 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-0/+12
|
* Modifications to the 10 failing test cases to m...Paul Phillips2009-05-0110-54/+54
| | | | | | Modifications to the 10 failing test cases to make them passing test cases in light of the patch from #1118.
* Fix and test for #1937Paul Phillips2009-04-301-0/+1
|
* Fix and test case for #1626.Paul Phillips2009-04-301-0/+4
|
* Removed outdated test infastructure.Gilles Dubochet2009-04-2910-2028/+0
|
* Rewrote XML pull parser using exciting modern t...Paul Phillips2009-04-281-10/+10
| | | | | Rewrote XML pull parser using exciting modern techniques.
* Restructured Enumeration to have many fewer pub...Paul Phillips2009-04-231-3/+3
| | | | | | | | | | | | 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)
* some small changes to implicits handling, exist...Martin Odersky2009-04-232-5/+5
| | | | | | some small changes to implicits handling, existential abstraction, type parameter bounds checking
* Added test for java signaturesIulian Dragos2009-04-222-0/+23
|
* add serialization test, disabled patmat debug t...michelou2009-04-212-0/+23
| | | | | add serialization test, disabled patmat debug traces
* Added test for #777, by Alex CruiseAntonio Cunei2009-04-141-0/+4
|
* Removed non-deterministic test.Philipp Haller2009-04-142-13/+0
|
* Forgot testIulian Dragos2009-04-071-0/+13
|
* Today's frustration commit! Disables all forwar...Paul Phillips2009-03-312-0/+0
| | | | | | | Today's frustration commit! Disables all forwarders including main until we can figure out how to avoid #1795, and reverts ostensible fix for #1240 to avoid #1840, #1842, and the rest of the gang.
* Moved static forwarder generation behind -Xforw...Paul Phillips2009-03-315-4/+0
| | | | | | | Moved static forwarder generation behind -Xforwarders option. Special cased main so #363 continues to work. Moved test case for #1745 into pending since it requires forwarders to work.
* Pending test for #1840Ingo Maier2009-03-312-0/+6
|
* changed overloaing resolution to make Builders ...Martin Odersky2009-03-302-8/+7
| | | | | | | changed overloaing resolution to make Builders work. generalized companion object generation in Namers. Fixed a problem in Types that made the collection build crash.
* Fixed nested lazy values (#1589).Iulian Dragos2009-03-302-0/+29
|
* Pending test for #1836Ingo Maier2009-03-302-0/+2
|
* Fix for #1838Ingo Maier2009-03-302-0/+14
|
* Fixed Java signatures of forwarders for inherit...Iulian Dragos2009-03-302-0/+28
| | | | | | | | Fixed Java signatures of forwarders for inherited members, and references to scala.Nothing are translated to scala.runtime.Nothing$ (see #1254, #1822, #1555). Moved a Java test that was not run to its proper subdirectory, to make partest happy.
* Correcting equality behaviour on IntMap.empty a...David MacIver2009-03-262-0/+12
| | | | | Correcting equality behaviour on IntMap.empty and LongMap.empty
* Fixed #1675Iulian Dragos2009-03-241-0/+11
|
* Added test files for #1789 and #1761Iulian Dragos2009-03-242-0/+15
|
* fixed ticket #1813 (BigDecimal implicits)michelou2009-03-232-47/+60
|
* reimplemented list union/intersect/diff as mult...michelou2009-03-201-17/+72
| | | | | reimplemented list union/intersect/diff as multiset ops
* chyanged implicits so that implicit Builder pat...Martin Odersky2009-03-174-6/+72
| | | | | chyanged implicits so that implicit Builder pattern works.
* Removed passing test for #1107 from pending; a ...Paul Phillips2009-03-162-19/+0
| | | | | | Removed passing test for #1107 from pending; a larger test case already exists in files.
* The birth of the @switch and @tailrec annotations.Paul Phillips2009-03-164-0/+139
| | | | | | | | | | | | 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
* Better inference for implicits; some preparatio...Martin Odersky2009-03-151-2/+3
| | | | | Better inference for implicits; some preparations for new collections.
* Modifies try/catch/finally to allow arbitrary e...Paul Phillips2009-03-131-0/+10
| | | | | | | | | Modifies try/catch/finally to allow arbitrary expressions for try. Formerly { ... } was required for try. Now expressions like: val x = try Integer.parseInt("xx") catch { case e => 10 } work as one would hope.
* Reverted a small parser change which had the un...Paul Phillips2009-03-061-1/+1
| | | | | | Reverted a small parser change which had the unfortunate side effect of making it much harder to enter code into the interpreter.
* Fix and test case for #1392.Paul Phillips2009-03-022-0/+5
|
* Fix and test case for #1107, many long days in ...Paul Phillips2009-03-022-0/+20
| | | | | | | Fix and test case for #1107, many long days in the making. If you fully understand why this change causes #1107 to work I implore you to add a comment or two to Symbols.scala.
* Fix for ticket #1718David MacIver2009-02-282-0/+11
|
* Test cases for #1745.Paul Phillips2009-02-272-0/+17
|
* Moved *withinZero tests to pendingPhilipp Haller2009-02-274-0/+0
|
* Reverting last commit as it seems to have cause...Paul Phillips2009-02-262-5/+0
| | | | | Reverting last commit as it seems to have caused breakage.
* Fix and test case for #1392.Paul Phillips2009-02-262-0/+5
|
* Fix and test case for #1747.Paul Phillips2009-02-241-0/+6
|
* fixed several problems with cyclic references u...Martin Odersky2009-02-236-10/+22
| | | | | | fixed several problems with cyclic references uncovered by experimenting with collections. Added early type definitions.
* Continuation of r17177 to also check type annot...Paul Phillips2009-02-232-1/+10
| | | | | | Continuation of r17177 to also check type annotations; test case broadened accordingly.
* Fix and test case for #935; added test in RefCh...Paul Phillips2009-02-232-0/+10
| | | | | | Fix and test case for #935; added test in RefChecks to confirm that parameterized annotations conform to type bounds.
* When inferring a type is scala.Whatever, have t...Paul Phillips2009-02-221-0/+34
| | | | | | When inferring a type is scala.Whatever, have to take care to _root_ qualify it so a package named scala doesn't subvert it. Fixes #430.
* Fix and test for #1659Antonio Cunei2009-02-192-0/+9
|
* Look for main method in companion object and ad...Paul Phillips2009-02-192-0/+10
| | | | | | Look for main method in companion object and add a static forwarder to companion class if possible + test case; fixes bug #363.
* Improved error messages for certain illegal ove...Paul Phillips2009-02-192-0/+12
| | | | | | Improved error messages for certain illegal overriding situations, plus test cases. Resolves bug #276.
* Issue warning when attempting to refine Unit, p...Paul Phillips2009-02-183-0/+19
| | | | | Issue warning when attempting to refine Unit, plus test case; bug #284.
* Fix and test case for #1565; an anonymous funct...Paul Phillips2009-02-182-1/+19
| | | | | | | Fix and test case for #1565; an anonymous function can now be used as a statement (primarily for use in the interpreter) unless it cannot be distinguished from a self-type declaration.