summaryrefslogtreecommitdiff
path: root/test/files/run
Commit message (Collapse)AuthorAgeFilesLines
* Unique's seeming victory is overruled by commit...Paul Phillips2010-02-044-6/+6
| | | | | | Unique's seeming victory is overruled by committee. It is "distinct", not "unique", wherein lies the nub. No review.
* A big push to make the interpreter easier to in...Paul Phillips2010-02-032-8/+6
| | | | | | | | | | | | A big push to make the interpreter easier to instantiate without having to dodge bullets. It shouldn't have to be any harder than this: scala> new scala.tools.nsc.Interpreter().evalExpr[Int]("5*5") res0: Int = 25 ...and now it isn't. Review by community.
* Striking while the iron is hot, renamed removeD...Paul Phillips2010-02-034-6/+6
| | | | | | | | | Striking while the iron is hot, renamed removeDuplicates to unique and deprecated removeDuplicates. The debate between distinct and unique was vigorous but unique won by a freckle. (Dark horse 'nub' was disqualified for taking performance enhancers.) The only thing which might need review is the choice of name, but review by odersky.
* Made sliding/grouped throw an exception when re...Paul Phillips2010-02-031-0/+13
| | | | | | Made sliding/grouped throw an exception when read past the end. Closes #3017.
* A compact tree printer, for primitives like mys...Paul Phillips2010-01-302-0/+45
| | | | | | | | | A compact tree printer, for primitives like myself who do all their debugging in the console and need extraneous information filtered out. New option: -Ycompact-trees. Supply that in conjunction with -Xprint:all and suddenly the output is a (relative) masterpiece of concision. Review by anyone who is game to review such a thing. Community?
* Removing defaultGetter field from TermSymbols.Lukas Rytz2010-01-282-0/+4
|
* close #2886 (applied patch). no reviewLukas Rytz2010-01-282-0/+8
|
* Access modifiers added for certain members and ...Aleksandar Pokopec2010-01-261-1/+1
| | | | | | Access modifiers added for certain members and some refactoring in Regex.
* Fixes #2766. Review by phaller.Aleksandar Pokopec2010-01-251-1/+20
|
* Test file for matching with replace.Aleksandar Pokopec2010-01-251-0/+27
|
* close #2929.Lukas Rytz2010-01-252-0/+5
|
* some more performance tunings. No review.Martin Odersky2010-01-181-0/+12
|
* Fix and test case for #408. Review by community.Paul Phillips2010-01-181-0/+12
|
* Exposed native Array clone() method.Paul Phillips2010-01-161-0/+106
| | | | | Review by dragos.
* Fix and test for #2354. Review by community.Paul Phillips2010-01-151-0/+17
|
* Added ConcurrentMap and Properties conversion c...Aleksandar Pokopec2010-01-131-0/+60
| | | | | Added ConcurrentMap and Properties conversion classes and test.
* Reverts r20311 since I'm not seeing what's goin...Paul Phillips2010-01-131-0/+7
| | | | | | Reverts r20311 since I'm not seeing what's going on in #2876 and the optimization can wait.
* Moved the test for #2364 to pending because it ...Paul Phillips2010-01-112-58/+0
| | | | | | Moved the test for #2364 to pending because it apparently uses some nonstandard classes.
* Fix and test case for #2364, which regressed wi...Paul Phillips2010-01-112-0/+58
| | | | | Fix and test case for #2364, which regressed with the fix to #2721.
* Red black tree patch and test.Aleksandar Pokopec2010-01-111-0/+46
| | | | | no review
* Fixed #2850 -- while inside finally causes Veri...Iulian Dragos2010-01-071-0/+19
| | | | | Fixed #2850 -- while inside finally causes VerifyError, review by rytz
* Fixes #2857. No review.Hubert Plociniczak2010-01-062-0/+10
|
* refined changes to implicits to allow again imp...Martin Odersky2010-01-041-1/+0
| | | | | | refined changes to implicits to allow again implicits in non-static companion objects.
* Added extensive statistics, reduced time of imp...Martin Odersky2010-01-041-0/+1
| | | | | | Added extensive statistics, reduced time of implicit resolution by 2/3rds, of whole typer by 1/4 to 1/3rd.
* Small change in test.Aleksandar Pokopec2009-12-221-4/+4
| | | | | no review
* fixed #2548 - reverse, reverseIterator for view...Aleksandar Pokopec2009-12-221-0/+25
| | | | | | fixed #2548 - reverse, reverseIterator for views bug. Also - reverseMap for views now should work. review by phaller.
* close #2820Lukas Rytz2009-12-211-0/+6
|
* Minimally integrated the semi-orphaned immutabl...Paul Phillips2009-12-211-1/+1
| | | | | | | Minimally integrated the semi-orphaned immutable.Stack into the collections hierarchy and enabled it in the sequence tests. Closes #2822. review by community.
* closes #2784Lukas Rytz2009-12-101-0/+6
|
* Took manifests a little closer to the finish line.Paul Phillips2009-12-091-0/+147
| | | | | | doesn't work but the relationships between all the top, nearly top, and bottom types should all be all correct. (See lengthy test case.)
* new doc comment generation, including some new ...Martin Odersky2009-12-071-4/+4
| | | | | | new doc comment generation, including some new style doc comments in collection classes.
* object's name should be Test instead of MainHubert Plociniczak2009-12-041-1/+1
|
* Added new test, see #2754Hubert Plociniczak2009-12-041-0/+39
|
* another test for #2489Lukas Rytz2009-12-021-0/+9
|
* Fix and test case for #2378.Paul Phillips2009-12-011-0/+9
|
* Fix and test case for #2721.Paul Phillips2009-11-302-0/+14
|
* Fixed failing test in the optimised caseIulian Dragos2009-11-271-1/+3
|
* Fixed test I broke.Paul Phillips2009-11-271-3/+3
|
* Fixed test cases to the new method names (index...Iulian Dragos2009-11-263-20/+20
| | | | | | Fixed test cases to the new method names (indexOfSeq -> indexOfSlice). See r19892
* Improved fix for #2552Donna Malayeri2009-11-261-1/+0
|
* Merge branch 'inner-class-attr'Iulian Dragos2009-11-262-0/+26
|
* Disabled docgenerator test, which isn't compati...Gilles Dubochet2009-11-242-472/+0
| | | | | Disabled docgenerator test, which isn't compatible with Scaladoc 2.
* Added reverse capabilities to PriorityQueue.Aleksandar Pokopec2009-11-241-0/+49
|
* Closed #2552.Donna Malayeri2009-11-232-0/+83
|
* Priority queue reverse is undefined - overriden...Aleksandar Pokopec2009-11-221-10/+30
| | | | | | Priority queue reverse is undefined - overriden to throw an exception. Reverse iterator seems to have sense - it is overriden and is defined, and some methods in SeqLike are implemented in terms of it.
* Applied performance patch and test case from ij...Paul Phillips2009-11-211-0/+54
| | | | | Applied performance patch and test case from ijuma; closes #2526.
* Trying to get the test to pass on the server.Aleksandar Pokopec2009-11-201-1/+18
|
* Commented out anonymous function invocation for...Aleksandar Pokopec2009-11-201-8/+8
| | | | | | Commented out anonymous function invocation for which Hudson was complaining it couldn't find the classdef.
* Changes made in the clean up phase - now the sy...Aleksandar Pokopec2009-11-202-0/+269
| | | | | Changes made in the clean up phase - now the symbols get interned during classload for each symbol literal - references to them reside in static fields. These static fields get initialized in static constructors - the java backend will now identify ctors with static flags and generate a static initializer containing the necessary code.
* Priority queue test, updated.Aleksandar Pokopec2009-11-201-1/+1
|