summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Removed long dead AST Node Sequence.Paul Phillips2009-10-151-2/+1
| | | | | | | | detritus from regular expression patterns, but Star still depends on REGPATmode existing -- nothing checks for that mode specifically, but not having it set causes failure. So it is renamed to STARmode.
* Scaladoc comment position fixes with tests; sca...Miles Sabin2009-10-147-0/+92
| | | | | | | Scaladoc comment position fixes with tests; scaladoc comment postions are now accessible by symbol; respond retry in interactive Global is now handled properly.
* Fixed #2234.Philipp Haller2009-10-131-0/+4
|
* Fixed #2422 abd #2461Martin Odersky2009-10-133-0/+59
|
* Test case for #2127.Paul Phillips2009-10-131-0/+5
|
* Fix for disabled test t2359.Philipp Haller2009-10-122-0/+0
|
* Fixed #2444Martin Odersky2009-10-129-72/+15
|
* reverted immutable.Vector because it gave rando...Martin Odersky2009-10-1230-81/+320
| | | | | | reverted immutable.Vector because it gave random build errors on my machine. Fixed various tickets, updated test and check files.
* Definite fix for #2060; fix for #2392.Martin Odersky2009-10-081-1/+3
| | | | | Added aliases for Vector and Traversable to scala package object.
* Looked through the .disabled tests which are st...Paul Phillips2009-10-085-768/+33
| | | | | | | Looked through the .disabled tests which are still under files (as opposed to those moved to disabled.) Brought some back to life, put a stake through the heart of others, left two as they were.
* Disabling another test trying to unhang the tes...Paul Phillips2009-10-072-0/+0
| | | | | Disabling another test trying to unhang the test suite.
* Accidentally checked in a not-quite-working test.Paul Phillips2009-10-073-9/+1
|
* Moved a pile of passing tests from pending to f...Paul Phillips2009-10-0719-70/+17
| | | | | | Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
* Fixed #1000, #2060Martin Odersky2009-10-071-0/+14
|
* "Fix" and test case for #1333.Paul Phillips2009-10-072-0/+5
|
* Disabled an actor test which is hanging the tes...Paul Phillips2009-10-062-0/+0
| | | | | Disabled an actor test which is hanging the test suite.
* Restored type of receiver in OutputChannel and ...Philipp Haller2009-10-064-6/+6
| | | | | | | Restored type of receiver in OutputChannel and Channel to Actor. ReplyReactor inherits from ReplyableReactor. ReplyableReactor is now private.
* Test case for #1357.Paul Phillips2009-10-061-0/+21
|
* fixed #2421: checkBounds in typedImplicit0 to f...Adriaan Moors2009-10-062-0/+0
| | | | | | fixed #2421: checkBounds in typedImplicit0 to filter out implicit searchresults that result in nonsenical type instantiations
* test for #1355, which has been fixed earlierAdriaan Moors2009-10-062-0/+5
|
* Test case for #2175.Paul Phillips2009-10-061-0/+20
|
* Test cases for some tickets fixed by recent arr...Paul Phillips2009-10-055-0/+43
| | | | | | Test cases for some tickets fixed by recent array and implicit activity: #1038, #1005, #1272.
* Reverted the BigDecimal implicits added for tic...Paul Phillips2009-10-051-3/+3
| | | | | Reverted the BigDecimal implicits added for ticket #1813.
* Test case for #298.Paul Phillips2009-10-052-0/+19
|
* Test case for #1609 and the first half of #2361.Paul Phillips2009-10-042-0/+15
|
* Sequence->SeqMartin Odersky2009-10-0239-30/+573
|
* Fixed #1939,plus some moving things around.Martin Odersky2009-10-021-0/+34
|
* Fix and test case for #2075.Paul Phillips2009-10-011-0/+7
|
* Test case for #2030 and #2056.Paul Phillips2009-10-013-2/+4
|
* Fix and tests for positions issues with context...Miles Sabin2009-10-014-0/+12
| | | | | | | | Fix and tests for positions issues with context/view bounds and multiple definitions; extended the ranges for defns/decls to cover their introducing keywords; removed an unused IDE hook; some whitespace cleanup.
* meh.Adriaan Moors2009-10-011-1/+1
|
* fixed #2208Adriaan Moors2009-10-013-0/+20
| | | | | | | | don't expand type aliases that take type arguments in typedTypeConstructor, as that bypasses refchecks have to expand type alias without type arguments, as AnyRef must disappear (problem with cycles during bootstrap)
* fixed #2101Adriaan Moors2009-10-013-0/+62
| | | | | | there were some issues with heap pressure that made the compile take incredibly long, these were solved by increasing the max allowed heap
* missing test cases for #2261, #2293, #2421Adriaan Moors2009-10-014-0/+65
|
* Fixed 'finally'.Iulian Dragos2009-09-302-0/+25
|
* fixed #2311.Martin Odersky2009-09-302-2/+2
|
* fix windows / ibm nightlyLukas Rytz2009-09-302-5/+5
|
* improved annotations copying (documentation, mo...Lukas Rytz2009-09-292-0/+23
| | | | | | improved annotations copying (documentation, moved meta-annotations, added tests)
* fixed #2316: No longer cache entire SearchResul...Adriaan Moors2009-09-293-0/+82
| | | | | | | | | | | | | | | | | | | | | | | fixed #2316: No longer cache entire SearchResult when looking for implicits in the parts of the expected type. (patch by retronym -- see ticket) A SearchResult may contain symbols local to the scope of the search that were used as implicit parameters, so they are not safely cacheable. The fix for #2101 does not suffice. That patch avoided bound symbols being duplicated, but the problem is much worse. The implicits for an expected type depend on more than just that type, so we cannot cache them using the expected type as a key. The neg/t2316 test illustrates this: T1 may provide two implicits, one requires an implicit T2, another an implicit T3. If an implicit T1 is first required when only a T2 is in scope, the SearchResult will describe the corresponding implicit. Now, if we enter an implicit value of type T3 into scope, the search should fail (it is ambiguous), but the cache does not take this new fact into account. The patch replaces the erroneous aggressive caching with a more conservative version that only caches ImplicitInfo's.
* Lazy fields null out fields that are used only ...Iulian Dragos2009-09-281-0/+18
| | | | | | | | Lazy fields null out fields that are used only in their initializer. When the lazy value is forced, it will null out all private fields that are used only by the current lazy value. This should reduce memory leaks, see #720
* fixed up testsMartin Odersky2009-09-283-4/+9
|
* refined implicit resolution.Martin Odersky2009-09-285-0/+36
|
* More accumulated XML work, including removing s...Paul Phillips2009-09-251-11/+6
| | | | | | | More accumulated XML work, including removing some bits which were deprecated long ago or are visibly abandoned. Hopefully this will be the last XML patch for a while.
* Reverted r18215 at martin's request.Paul Phillips2009-09-253-7/+3
|
* Collections refactoring.Martin Odersky2009-09-255-16/+31
|
* fix buildLukas Rytz2009-09-251-6/+0
|
* Introduced actors package object to deprecate a...Philipp Haller2009-09-241-10/+1
| | | | | | | | | | | Introduced actors package object to deprecate a number of classes. Made ForkJoinScheduler more configurable and let it read ThreadPoolConfig. Clean-ups in TerminationMonitor and ActorGC. Removed DefaultExecutorScheduler. Made DelegatingScheduler and ExecutorScheduler private. Deprecated MessageQueue and MessageQueueElement, so that we can later make them private. Deprecated a number of methods in IScheduler. Tightened access modifiers in Reactor.
* fix #2390Lukas Rytz2009-09-241-1/+3
|
* fix for #2382Lukas Rytz2009-09-241-0/+3
|
* [no content change] Fixed all SVN properties: m...Gilles Dubochet2009-09-24362-313/+223
| | | | | | | | [no content change] Fixed all SVN properties: mimes, EOL, executable. Id expansion is consistently enabled for Scala/Java/C# sources in 'src/' and consistently disabled and removed from everywhere else: there should not be any dead Id tags anymore.