summaryrefslogtreecommitdiff
path: root/test/files
Commit message (Collapse)AuthorAgeFilesLines
...
* Attempted to resolve the improbable mess surrou...Paul Phillips2009-06-224-6/+19
| | | | | | | | Attempted to resolve the improbable mess surrounding implicit conversions from Unit. Modified test case which relied on the supposedly verboten behavior; verbotenized () => AnyRef; added new test case which fails if verboten behavior should ever return.
* More equality shenanigans.Paul Phillips2009-06-211-4/+0
| | | | | | | and the various Int types all use different hashCode algorithms. This means there is very broken behavior afoot among the types. I see no option but to make numeric equals significantly less tricky.
* improvements to names / defaults (implicits, ty...Lukas Rytz2009-06-206-21/+97
| | | | | | improvements to names / defaults (implicits, type of defaults, #2064, ...)
* Specialization landed in trunk.Iulian Dragos2009-06-1841-0/+1532
|
* allow using named / default arguments in self- ...Lukas Rytz2009-06-154-34/+47
| | | | | | allow using named / default arguments in self- and super constructor calls. fixes #2050 and #2052.
* - fixed #2057Lukas Rytz2009-06-151-0/+7
| | | | | - Symbol.annotations now first calls .initialize
* Moved test for #1801 to pending for offline bug...Philipp Haller2009-06-142-37/+0
| | | | | Moved test for #1801 to pending for offline bug fixing.
* more annotations cleanup.Lukas Rytz2009-06-113-1/+8
|
* Test case for #252.Paul Phillips2009-06-101-0/+17
|
* Fixed failing test-suite case.Gilles Dubochet2009-06-091-6/+6
|
* fix annotations testLukas Rytz2009-06-071-1/+1
|
* fixed BeanProperty, added BooleanBeanProperty, ...Lukas Rytz2009-06-0714-0/+108
| | | | | | fixed BeanProperty, added BooleanBeanProperty, added many tests (#1029, #1751, #294, #1942, #1782, #1788, #637).
* removed code for parsing old pickle format.Lukas Rytz2009-06-034-2/+26
|
* named argument disallowed when assignment expre...Lukas Rytz2009-06-023-16/+21
| | | | | | named argument disallowed when assignment expression would typecheck. minor fixe to names / defaults.
* reverted 17960, restored bug1241 w/ new check fileAntonio Cunei2009-06-023-4/+7
|
* Reverting 17948, disabling test.Antonio Cunei2009-06-023-7/+4
|
* Changed output error for bug1241.David MacIver2009-06-011-1/+4
|
* Fix and test for bug 2029.David MacIver2009-06-012-0/+19
|
* Moved test for offline bug fixing.Philipp Haller2009-05-312-25/+0
|
* New tests for exceptions and Actor.receiveWithin.Philipp Haller2009-05-315-4/+133
|
* Changed t1801.Philipp Haller2009-05-301-1/+1
|
* big overhaul of annotations implementation.Lukas Rytz2009-05-309-18/+20
|
* Named and default argumentsLukas Rytz2009-05-3039-83/+568
| | | | | | | - MethodTypes now have (params: List[Symbol]) - "copy"-methods for case classes - the "copy" object in the compiler is now called "treeCopy"
* Decreased memory consumption of test for #1801.Philipp Haller2009-05-292-6/+1
|
* Riffing off the removal of the cldc library, re...Paul Phillips2009-05-295-33/+3
| | | | | | Riffing off the removal of the cldc library, removed forCLDC and its special cases. Not as much fun as removing inIDE, but still fun.
* Added test for SchedulerAdapter.Philipp Haller2009-05-282-0/+47
|
* Patched up failing test case.Paul Phillips2009-05-281-1/+1
|
* Further development of the Numeric and Ordering...Paul Phillips2009-05-281-2/+2
| | | | | | | Further development of the Numeric and Ordering traits. Replaced Predef implicits from everything => Ordered with a single implicit from Ordering => Ordered.
* Simpler log message for daemon actor test.Philipp Haller2009-05-282-5/+5
|
* Added test for OutputChannelActor.Philipp Haller2009-05-282-0/+85
|
* Added test for Actor.exceptionHandler.Philipp Haller2009-05-272-0/+58
|
* Added test for #2000.Philipp Haller2009-05-277-2/+95
|
* Reintegrated PriorityQueue.Paul Phillips2009-05-271-0/+24
|
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-2731-80/+54
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* Fixed problem that spurious caused exhaustivene...Martin Odersky2009-05-271-1/+15
| | | | | | Fixed problem that spurious caused exhaustiveness warning for RefChecks. Enriched positions and worked on the interactive compiler.
* Added tests for #2015.Philipp Haller2009-05-276-0/+51
|
* Moved actorgc_leak test to pending, because it ...Philipp Haller2009-05-272-64/+0
| | | | | Moved actorgc_leak test to pending, because it fails (only) on Windows.
* Added test case for #1801.Philipp Haller2009-05-272-0/+42
|
* Not sure why the disabled test did not get comm...Martin Odersky2009-05-261-8/+0
| | | | | Not sure why the disabled test did not get committed last time.
* disabled to failing tests for now.Martin Odersky2009-05-262-0/+8
|
* A big yet interim patch emerging from my attemp...Paul Phillips2009-05-261-2/+2
| | | | | | | | | | | | | | | | | | A big yet interim patch emerging from my attempts to centralize common classloader-related code. As it turns out, not that much of the patch is directly associated with that. Most of it is cleanup in the neighborhoods I was visiting, but there are a few new library files about which I'm open to feedback: scala/util/control/Exception - lots of exception handling code. scala/net/Utility - what would be the first file in scala.net.*, more code to follow if that sounds like a good package idea. scala/util/ScalaClassLoader - mostly convenience methods right now, more sophistication to come Also, this adds a :jar command to the repl which adds a jar to your classpath and replays the session.
* Fixed #1999.Philipp Haller2009-05-242-0/+64
|
* Fix and test for #1360 - when passing a sequenc...Paul Phillips2009-05-212-0/+9
| | | | | | Fix and test for #1360 - when passing a sequence to java varargs, call .toArray on it if it is not already an array.
* 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.
* Updated neg check files to the new output of r1...Antonio Cunei2009-05-2024-23/+49
| | | | | Updated neg check files to the new output of r17773
* Test case for #715.Paul Phillips2009-05-192-0/+101
|
* Restored xml test cases to unminimized tagsPaul Phillips2009-05-159-52/+52
|
* 1.4-related cleanup and reorganization.Antonio Cunei2009-05-1574-440/+19
| | | | | | | Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates.
* Calmed down grudge-holding packrat test case.Paul Phillips2009-05-151-3/+3
|
* cleaned up collection builder frameworkMartin Odersky2009-05-142-0/+330
|