summaryrefslogtreecommitdiff
path: root/test/files
Commit message (Collapse)AuthorAgeFilesLines
* Interim fix and test case for #1434.Paul Phillips2009-07-051-0/+15
|
* Fixes and test cases for #2124 and #2125.Paul Phillips2009-07-054-0/+52
|
* fix #2122, test for #2116Lukas Rytz2009-07-053-4/+15
|
* Added test for #1948.Philipp Haller2009-07-022-0/+12
|
* refined range positions some more; eliminated A...Martin Odersky2009-07-024-8/+5
| | | | | refined range positions some more; eliminated Array.withDims
* Creating case classes in preference to passing ...Paul Phillips2009-07-011-0/+19
| | | | | | | | Creating case classes in preference to passing around a variety of inscrutable tuples. And, fix and test case for #1697. There remain serious extractor issues which I hope to have fully diagnosed in the near future.
* added "diagnostic" to context.Lukas Rytz2009-07-011-0/+3
|
* minor cleanups for named argsLukas Rytz2009-06-303-0/+7
|
* Enhanced error message when a type error is bec...Paul Phillips2009-06-303-2/+11
| | | | | | Enhanced error message when a type error is because of identically named classes, one in scala.* and one not.
* Applied patches to fix the issues in #2074.Philipp Haller2009-06-303-0/+19
|
* Applied patch to fix #2098.Philipp Haller2009-06-302-0/+8
|
* Applied patch to fix #2104 and added test.Philipp Haller2009-06-302-0/+51
|
* Added test for #2031.Philipp Haller2009-06-292-0/+15
|
* scalap changed to treat named parameters and pa...ilyas2009-06-2923-1/+85
| | | | | scalap changed to treat named parameters and package objects
* Prepares a test for further changes in Reactor.Philipp Haller2009-06-281-2/+0
|
* Fixed the fact that reflective calls had logica...Paul Phillips2009-06-261-2/+2
| | | | | | | | Fixed the fact that reflective calls had logical and arithmetic right shift swapped. Modified test case to use a value that doesn't have identical output for both shifts. Grumbled to self that test cases which fail to test are markedly worse than no tests at all.
* small fix to named argumentsLukas Rytz2009-06-252-20/+26
|
* named arguments only at top level in () paramet...Lukas Rytz2009-06-254-23/+44
| | | | | named arguments only at top level in () parameters.
* fixed bug in Parser and updated check files.Martin Odersky2009-06-255-14/+14
|
* 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
|