summaryrefslogtreecommitdiff
path: root/test/files/run
Commit message (Collapse)AuthorAgeFilesLines
* Added -Ycheckinit, which causes all getters to ...Iulian Dragos2008-07-283-0/+151
| | | | | | | | Added -Ycheckinit, which causes all getters to check that fields are initialized before being used. It reuses the same machinery (and bitmaps) as lazy values. For now it requires the new initialization order (-Xexperimental) to work.
* Increased stack size for run/bridges test.Philipp Haller2008-07-221-1/+1
|
* Move the sync-var test into the correct directory.Geoffrey Washburn2008-07-102-54/+0
|
* Seq.apply, RandomAccessSeq.applystepancheg2008-06-252-0/+16
|
* lazy vals cannot override strict vals and vice ...Martin Odersky2008-06-242-7/+4
| | | | | | lazy vals cannot override strict vals and vice versa; fixed initialization bugs that caused scala and fsc to fail.
* new STARR which implements pre-initialized fiel...Martin Odersky2008-06-202-4/+4
| | | | | new STARR which implements pre-initialized fields correctly.
* speed up ArrayBuffer by replacing BoxedAnyArray...stepancheg2008-06-201-0/+8
| | | | | speed up ArrayBuffer by replacing BoxedAnyArray with raw JVM array
* gixed gilles' gadt problems. Added some testsMartin Odersky2008-06-182-0/+15
|
* Moved pending tests that succeed to their place...Iulian Dragos2008-06-116-0/+64
| | | | | | Moved pending tests that succeed to their place in the 'files' directory.
* SyncVar enhancements:stepancheg2008-06-102-0/+54
| | | | | | | * deprecation of "exception" field * addition of blocking-queue-like "take", "put" methods * change of "unset" signature
* int -> Int, etc..michelou2008-06-103-11/+12
|
* int -> Int, etc..michelou2008-06-103-39/+39
|
* added EOLs, missing headersmichelou2008-06-103-30/+25
|
* int -> Int, etc..michelou2008-06-107-178/+177
|
* unify mutable and immutable stacks behavior (#957)stepancheg2008-06-062-0/+52
|
* makeRichChar to, until return RandomAccessSeq.P...stepancheg2008-06-062-0/+35
| | | | | makeRichChar to, until return RandomAccessSeq.Projection (#970)
* Fixed #981.Iulian Dragos2008-06-041-0/+19
|
* Fixed #948.Iulian Dragos2008-06-032-1/+17
|
* Iterator.collect method (#916)stepancheg2008-05-272-0/+5
|
* Implement #886: indexOf, findIndexOfstepancheg2008-05-242-0/+16
| | | | | | | | introduces Iterator indexOf, findIndexOf moved indexOf, findIndexOf bodies from Iterable to Iterator deprecated Iterable indexOf, findIndexOf introdued Seq indexOf, findIndexOf
* Fixed #807. Removed debug outout in JavaParsers.Martin Odersky2008-05-232-0/+6
|
* fixed #936Martin Odersky2008-05-231-0/+17
|
* fixed #911.Martin Odersky2008-05-223-1/+27
|
* fixed #911. Added comments to <~ and ~> methods.Martin Odersky2008-05-221-0/+9
|
* added tests; fixed #903; made Predef.Map covari...Martin Odersky2008-05-211-0/+6
| | | | | added tests; fixed #903; made Predef.Map covariant in second parameter.
* int -> Int, etc..michelou2008-05-202-21/+21
|
* int -> Int, etc..michelou2008-05-207-92/+87
|
* int -> Int, etc..michelou2008-05-201-32/+32
|
* int -> Int, etc..michelou2008-05-201-9/+7
|
* int -> Int, etc..michelou2008-05-203-12/+16
|
* More deprecation warnings fixed.Iulian Dragos2008-05-193-7/+7
|
* Deprecate all of the problematic + methods, and...Geoffrey Washburn2008-05-191-1/+1
| | | | | | Deprecate all of the problematic + methods, and removed those that never appeared in a release.
* Fixed classOf problems (issues #841, #876).Iulian Dragos2008-05-172-2/+47
| | | | | Updated manifests.check to reflect the new way 'void' is represented.
* Fix for #773. Geoffrey Washburn2008-05-011-3/+0
| | | | | | | | Problem was calling incompleteInputError multiple times would escalate the problem to be treated as a "real" error. This does not appear to be the correct semantics. Tried to fix this up as best as possible, but Sean needs to investigate the implications for the Eclipse plugin.
* Added test case for t595.Philipp Haller2008-04-172-0/+7
|
* added test cases for #710 and #346Burak Emir2008-04-101-1/+71
|
* fixed 495 again (this fix no longer ignores gua...Burak Emir2008-04-091-0/+15
| | | | | fixed 495 again (this fix no longer ignores guards), with test
* updated check filev2.7-divergedMartin Odersky2008-04-091-5/+2
|
* (1) Removed generation of $tag method for inter...Martin Odersky2008-04-071-0/+9
| | | | | | (1) Removed generation of $tag method for interfaces (2) improved type inference for clsoures (3) redesign of CharSequence and regex.
* test and fix for #631pradel2008-04-072-0/+19
|
* fixed #522Burak Emir2008-04-071-0/+21
|
* (1) more changes for dynamic cycle detection of...Martin Odersky2008-04-041-1/+1
| | | | | | | | (1) more changes for dynamic cycle detection of implicits 2) change (to wildcard scoping in types 3) suppress $tag generation for purely (abstract traits 4) increase stacksize for sabbus to 32m (otherwise (problems on Windows)
* Changed Stream implementation to use tail recur...Iulian Dragos2008-04-022-0/+20
| | | | | | | Changed Stream implementation to use tail recursive calls directly, instead of tail-recursive local functions. This has better GC behavior, see ticket #692.
* fixed #713michelou2008-04-022-24/+39
|
* Fixed issue #668, removed fix for issue #602.Gilles Dubochet2008-03-212-0/+5
|
* hello worldSean McDirmid2008-03-161-1/+1
|
* Array.zip supports arrays of different lengths.Lex Spoon2008-03-092-1/+13
|
* ScalaDoc, etc.Geoffrey Washburn2008-03-051-7/+9
| | | | | | | | | | | of Settings. All doc related settings have been commented out of Settings (soon to be removed) and are now found in doc.Settings. -Ydoc is no more. I believe I have updated the scaladoc Ant task correctly, but it is not clear how to test it.
* Fixed the test... I think.Geoffrey Washburn2008-03-051-1/+1
|
* Forgot to update the .check now that the test h...Geoffrey Washburn2008-02-281-5/+0
| | | | | Forgot to update the .check now that the test has changed.