summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* lazy vals cannot override strict vals and vice ...Martin Odersky2008-06-2412-23/+47
| | | | | | lazy vals cannot override strict vals and vice versa; fixed initialization bugs that caused scala and fsc to fail.
* Converting all vals possible into lazy vals, sh...Sean McDirmid2008-06-241-4/+4
| | | | | Converting all vals possible into lazy vals, should fix it.
* convering vals to lazy vals to accomodate new i...Sean McDirmid2008-06-242-18/+18
| | | | | convering vals to lazy vals to accomodate new initialization semantics.
* trying to fix buildSean McDirmid2008-06-241-1/+1
|
* * scaladoc - changed two objects into vals to a...Sean McDirmid2008-06-248-98/+149
| | | | | | | | * scaladoc - changed two objects into vals to avoid NPE in current build. - made model frame XML IDE friendly * IDE - hardening of various crashes - better semantic highlighting
* fix (?) for windows runner scriptsLukas Rytz2008-06-221-5/+5
|
* removed pre-supercall moving of valdefsMartin Odersky2008-06-202-2/+7
|
* use early initialization instead of relying on ...Martin Odersky2008-06-204-84/+88
| | | | | | use early initialization instead of relying on compiler moving valdefs in front of constructors.
* new STARR which implements pre-initialized fiel...Martin Odersky2008-06-206-50/+92
| | | | | new STARR which implements pre-initialized fields correctly.
* speed up ArrayBuffer by replacing BoxedAnyArray...stepancheg2008-06-204-22/+30
| | | | | speed up ArrayBuffer by replacing BoxedAnyArray with raw JVM array
* test for #1049pradel2008-06-201-0/+5
|
* fix^2 of t0590Martin Odersky2008-06-194-2/+14
|
* fixed t0590Martin Odersky2008-06-191-2/+6
|
* Cleaned up handling of reply destinations for r...Philipp Haller2008-06-183-100/+91
| | | | | | | Cleaned up handling of reply destinations for remote actors. Remote actor proxies now support all message send operations of the Actor trait in a general way.
* Fixed #1054.Iulian Dragos2008-06-181-1/+3
|
* gixed gilles' gadt problems. Added some testsMartin Odersky2008-06-1810-8/+105
|
* fixed #504Martin Odersky2008-06-181-12/+14
|
* fixed some bugs; disabled devirtualize; desiabl...Martin Odersky2008-06-1713-127/+367
| | | | | | fixed some bugs; disabled devirtualize; desiabled bells in JLineReader; fixed Gilles problems with GADTs
* test and fix for #1027pradel2008-06-172-1/+20
|
* added tests for #1035 and #1038 to pendingpradel2008-06-173-0/+18
|
* stub tree duplicate returns itself and no longe...Sean McDirmid2008-06-151-1/+1
| | | | | stub tree duplicate returns itself and no longer crashes.
* Null pointer check hardening.Sean McDirmid2008-06-151-1/+1
|
* Change iterator "next" method signatures from "...stepancheg2008-06-141-4/+4
| | | | | Change iterator "next" method signatures from "next" to "next()"
* Scripts should use JAVA_HOME to find java execu...stepancheg2008-06-145-0/+23
| | | | | Scripts should use JAVA_HOME to find java executable (#995)
* ResizableArray: s/val initialSize/def initialSi...stepancheg2008-06-131-1/+1
| | | | | | ResizableArray: s/val initialSize/def initialSize/: no need to store initial size as field
* corrected commentmichelou2008-06-121-2/+2
|
* Fixed 'isSameType' for refinement types with ov...Iulian Dragos2008-06-121-3/+10
| | | | | | Fixed 'isSameType' for refinement types with overloaded definitions. Fixes #1014.
* Moved pending tests that succeed to their place...Iulian Dragos2008-06-1116-0/+0
| | | | | | Moved pending tests that succeed to their place in the 'files' directory.
* indentationmichelou2008-06-111-4/+5
|
* Reverted change that introduced conflicting imp...Iulian Dragos2008-06-111-1/+1
| | | | | | Reverted change that introduced conflicting implicit conversions for vector +.
* Fixed #999.Iulian Dragos2008-06-112-13/+20
|
* SyncVar enhancements:stepancheg2008-06-104-7/+95
| | | | | | | * deprecation of "exception" field * addition of blocking-queue-like "take", "put" methods * change of "unset" signature
* Added javac.args to the build script.Iulian Dragos2008-06-101-5/+18
|
* Added 'scalac.args' parameter to the build script.Iulian Dragos2008-06-101-13/+27
|
* New STARR should fix vararg warnings?Geoffrey Washburn2008-06-103-3/+3
|
* Implemented #988.Geoffrey Washburn2008-06-103-0/+5
|
* int -> Int, etc..michelou2008-06-101-1/+1
|
* int -> Int, etc..michelou2008-06-102-10/+10
|
* fix for #1026pradel2008-06-101-1/+1
|
* removed println 'typing eta'pradel2008-06-101-1/+0
|
* test for #1024pradel2008-06-101-0/+4
|
* int -> Int, etc..michelou2008-06-1014-109/+111
|
* int -> Int, etc..michelou2008-06-104-41/+41
|
* added EOLs, missing headersmichelou2008-06-1038-92/+110
|
* int -> Int, etc..michelou2008-06-1019-268/+267
|
* Fixed Table, wrapped more of buttonNAME2008-06-109-62/+366
|
* fix for #1009pradel2008-06-103-0/+8
|
* Fixing #1015 and #1017 when run inside of a scr...Geoffrey Washburn2008-06-103-3/+59
| | | | | | | | Fixing #1015 and #1017 when run inside of a script. #1015 still won't work in the interpreter. #1017 still won't work in the interperter or methods.
* speed up HashTable by replacing BoxedAnyArray w...stepancheg2008-06-092-9/+9
| | | | | speed up HashTable by replacing BoxedAnyArray with raw array
* RandomAccessSeq.empty implementation is Project...stepancheg2008-06-091-1/+3
| | | | | RandomAccessSeq.empty implementation is Projection now.