summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Added test files for #1297Philipp Haller2008-08-282-0/+14
|
* minor test add-onmichelou2008-08-262-0/+4
|
* Fixed serialization of enumsmichelou2008-08-262-5/+78
|
* Reverted to target 1.5Iulian Dragos2008-08-191-1/+1
|
* Added test for inner classes.Iulian Dragos2008-08-193-1/+14
|
* Fixed #1215.Geoffrey Washburn2008-08-192-0/+7
|
* deprecated scalatest and removed it from furthe...Lukas Rytz2008-08-182-0/+17
| | | | | deprecated scalatest and removed it from further distributions
* corrected several problems with error reporting...Martin Odersky2008-08-188-0/+54
| | | | | | | corrected several problems with error reporting: positions checked twice, warnings masking errors. Refined solution of forward implicits without5 result type.
* new testMartin Odersky2008-08-173-0/+6
|
* Fixed test fileMartin Odersky2008-08-151-0/+2
|
* Buffer gets vararg +, += methods; small fixes.Martin Odersky2008-08-151-0/+4
|
* Forgot to update the flags for the test.Geoffrey Washburn2008-08-141-1/+1
|
* Fixing more deprecation warnings.Geoffrey Washburn2008-08-1215-26/+26
|
* Fixed deprecation warningsIulian Dragos2008-08-121-1/+1
|
* Correction to Sean's decoding fix.Geoffrey Washburn2008-08-121-0/+9
| | | | | Added a simple test for the unicode decoding stuff.
* Fixed tail-call related issues.Iulian Dragos2008-08-082-18/+0
|
* fixed #1127Martin Odersky2008-08-071-7/+0
|
* fixed #828, #1120, subtyping problem with exist...Martin Odersky2008-08-071-0/+4
| | | | | fixed #828, #1120, subtyping problem with existentials.
* fixed broken build (sorry)Martin Odersky2008-08-062-0/+11
|
* fixed #1163.Martin Odersky2008-08-053-0/+9
|
* fixed #1096, #1122, #1132.Martin Odersky2008-08-051-0/+13
|
* All these tests in pending currently pass for me.Geoffrey Washburn2008-08-056-0/+0
| | | | | Lets see what happens with the commit and nightly builds.
* These tests have already been moved from pendin...Geoffrey Washburn2008-08-052-10/+0
| | | | | These tests have already been moved from pending to files.
* Moving currently problematic tests to pending.Geoffrey Washburn2008-08-052-0/+0
|
* Added test for #1146.Philipp Haller2008-08-031-0/+6
|
* Moved tests from jvm5 to jvm.Philipp Haller2008-08-034-0/+0
|
* Changed "," to ", " in Queue.toString.Martin Odersky2008-08-012-4/+4
|
* Moved tests from jvm to jvm5.Philipp Haller2008-08-014-0/+0
|
* -Xexperimental changes for #1093Martin Odersky2008-07-311-0/+6
|
* fixed scalatest shootout on cygwinmichelou2008-07-291-2/+3
|
* Made -Xcheckinit imply -Xfuture, and added -Xfu...Iulian Dragos2008-07-291-1/+1
| | | | | | Made -Xcheckinit imply -Xfuture, and added -Xfuture to enable future language features (right now, only the new initialization order).
* Fixed #1143. Added tests for #1143 and #1116.Philipp Haller2008-07-294-0/+95
|
* Added -nowarn so that scalatest and partest beh...Iulian Dragos2008-07-292-22/+1
| | | | | Added -nowarn so that scalatest and partest behave similarly
* fixed Signature generationMartin Odersky2008-07-294-3/+25
|
* experimenting with Signature attributeMartin Odersky2008-07-293-0/+14
|
* 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.
* fixed #842, #945, #83, #996, #1016, + some perf...Martin Odersky2008-07-289-1/+65
| | | | | fixed #842, #945, #83, #996, #1016, + some performace tuning.
* (1) made base type sequences lazy in their argu...Martin Odersky2008-07-232-4/+4
| | | | | | | (1) made base type sequences lazy in their arguments. Made `validateType' in RefChecks more lenient. First shot at allowing higher-kinded intersection types.
* Increased stack size for run/bridges test.Philipp Haller2008-07-221-1/+1
|
* added Iterator.flatten method; refactoring: clo...Martin Odersky2008-07-213-5/+5
| | | | | added Iterator.flatten method; refactoring: closure -> baseTypeSeq
* fix for #1028Lukas Rytz2008-07-121-0/+12
| | | | | converted some tabs to spaces
* fixed #764 and #770Martin Odersky2008-07-104-0/+61
|
* fixed t0851 and t1101.Martin Odersky2008-07-104-4/+44
|
* Move the sync-var test into the correct directory.Geoffrey Washburn2008-07-102-0/+0
|
* Added pending tests for #1070, #1079 and #1087.Gilles Dubochet2008-07-084-0/+10
|
* Seq.apply, RandomAccessSeq.applystepancheg2008-06-252-0/+16
|
* Added test for #503.Geoffrey Washburn2008-06-252-0/+10
|
* lazy vals cannot override strict vals and vice ...Martin Odersky2008-06-243-7/+24
| | | | | | 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