summaryrefslogtreecommitdiff
path: root/test/files/pos
Commit message (Collapse)AuthorAgeFilesLines
* Named and default argumentsLukas Rytz2009-05-302-0/+9
| | | | | | | - MethodTypes now have (params: List[Symbol]) - "copy"-methods for case classes - the "copy" object in the compiler is now called "treeCopy"
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-277-19/+19
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* 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
|
* Test case for #715.Paul Phillips2009-05-192-0/+101
|
* 1.4-related cleanup and reorganization.Antonio Cunei2009-05-1541-0/+210
| | | | | | | Removed a bunch of now useless 1.4 code, merged back jvm5-specific partest tests into the general jvm tests, documentation updates.
* massive new collections checkin.Martin Odersky2009-05-0810-19/+11
|
* Fix and test for #1937Paul Phillips2009-04-301-0/+1
|
* Fix and test case for #1626.Paul Phillips2009-04-301-0/+4
|
* Forgot testIulian Dragos2009-04-071-0/+13
|
* Moved static forwarder generation behind -Xforw...Paul Phillips2009-03-312-0/+6
| | | | | | | 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.
* Fixed #1675Iulian Dragos2009-03-241-0/+11
|
* Added test files for #1789 and #1761Iulian Dragos2009-03-242-0/+15
|
* chyanged implicits so that implicit Builder pat...Martin Odersky2009-03-171-0/+66
| | | | | chyanged implicits so that implicit Builder pattern works.
* 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.
* 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.
* fixed several problems with cyclic references u...Martin Odersky2009-02-232-3/+42
| | | | | | fixed several problems with cyclic references uncovered by experimenting with collections. Added early type definitions.
* 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.
* Issue warning when attempting to refine Unit, p...Paul Phillips2009-02-181-0/+5
| | | | | Issue warning when attempting to refine Unit, plus test case; bug #284.
* Fix and test case for #1565; an anonymous funct...Paul Phillips2009-02-181-0/+18
| | | | | | | 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.
* Fix for #460 (and its duplicate #1413) plus tes...Paul Phillips2009-02-181-0/+9
| | | | | | Fix for #460 (and its duplicate #1413) plus test case. Method f can now be invoked via (f _)(x) without requiring .apply(x).
* Began evaluation of the tests in pending, and m...Paul Phillips2009-02-161-0/+7
| | | | | | Began evaluation of the tests in pending, and moved/updated/removed .scala and .check files as warranted.
* hopefully fixed the build by fixing deSkolemize...Martin Odersky2009-02-161-2/+21
| | | | | | hopefully fixed the build by fixing deSkolemize, and adapting the new collection libraries to stricter override checking.
* Fixed an ambiguity problem with implcits, and a...Martin Odersky2009-02-151-0/+7
| | | | | | | Fixed an ambiguity problem with implcits, and a spurious cyclic reference error mentioned by Jorge. Tightened overriding checks (test case is new collection libraries).
* Fix for #1185Antonio Cunei2009-02-121-0/+15
|
* widened access check for readResolve to include...Paul Phillips2009-02-121-0/+3
| | | | | | widened access check for readResolve to include all access modifiers; fixes bug #1385
* moved most of the passing tests from pending to...Paul Phillips2009-02-104-0/+45
| | | | | | moved most of the passing tests from pending to files ; reunited inner.scala with inner.check
* Removes underscore from the list of characters ...Paul Phillips2009-02-101-0/+6
| | | | | | | Removes underscore from the list of characters used during semicolon inference which it believes cannot start a statement on a new line, fixing bug #756; adds 1 test case, updates 1.
* Fix and test for #1648Geoffrey Washburn2009-01-201-0/+4
|
* fixed erroneous cyclic reference error conditio...Martin Odersky2009-01-081-0/+7
| | | | | fixed erroneous cyclic reference error condition; generated new starr.
* Applied Paul's patch for #1380, moved test out ...Geoffrey Washburn2008-11-133-0/+5
| | | | | Applied Paul's patch for #1380, moved test out of pending.
* Reversion of the changes to targetParams which ...David MacIver2008-11-102-17/+6
| | | | | | | | | Reversion of the changes to targetParams which I made to fix #1260 as they caused problems (specifically #1480). This code is wrong but it's the old wrong behaviour, which is less broken than the new wrong behaviour.
* Applied Paul's patch for #1467.Iulian Dragos2008-10-311-0/+18
|
* Apparently this test *hasn't* been fixed.David MacIver2008-10-302-19/+0
|
* Added a test for #1107.David MacIver2008-10-292-0/+19
|
* Fix for ticket #1087.David MacIver2008-10-291-0/+3
|
* Another test case emerging from paul playing wi...David MacIver2008-10-291-0/+4
| | | | | | Another test case emerging from paul playing with the compiler's constant propagation.
* Test case extracted from Paul's broken patch fo...David MacIver2008-10-291-0/+8
| | | | | | | Test case extracted from Paul's broken patch for #1458 Essentially one needs to make sure Base { val changesBaseClasses = true } doesn't infer the refinement type Base { val changesBaseClasses : Boolean(true) = true }
* Moved test requiring 1.5 javac/jvm to pos5.Philipp Haller2008-10-285-14/+0
|
* Minimized the test - one case, a default and 64...David MacIver2008-10-261-8/+1
| | | | | Minimized the test - one case, a default and 64 entries.
* Test case for large case statements (similar to...David MacIver2008-10-261-0/+13
| | | | | | Test case for large case statements (similar to those found in e.g. Scanners.scala).
* Fix for ticket 1260.David MacIver2008-10-261-0/+17
|
* added testMartin Odersky2008-10-221-0/+18
|
* fixed #1214Lukas Rytz2008-10-221-0/+3
|
* fixed #637 #1070Lukas Rytz2008-10-221-0/+10
|
* Moved test for #1409 from pending to pos.Philipp Haller2008-10-133-0/+11
|
* Moved failing test t0699 to pending.Philipp Haller2008-10-132-9/+0
|
* Added test for #453Geoffrey Washburn2008-10-091-0/+6
|
* Moved successful tests from pending.Geoffrey Washburn2008-10-0813-0/+61
|
* Test for #1391.Geoffrey Washburn2008-10-011-0/+43
|