summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a problem with TypeTree.symbolMartin Odersky2008-01-171-1/+1
|
* Fixed ticket #106.Iulian Dragos2008-01-172-3/+8
|
* build target is now 1.5Martin Odersky2008-01-1721-191/+403
| | | | | | case classes now generate objects not factory methods. some small cleanups for type inference
* Fixed ticket #356Iulian Dragos2008-01-171-2/+22
|
* fixed t341Burak Emir2008-01-151-1/+1
|
* Learned of the shorter way of converting string...Geoffrey Washburn2008-01-152-2/+2
| | | | | Learned of the shorter way of converting strings to ints.
* Fixed too aggressive dead-code-elimination agai...Iulian Dragos2008-01-151-1/+1
| | | | | | Fixed too aggressive dead-code-elimination against side-effecting lazy values
* Moved the checks for executing JVM versus targe...Geoffrey Washburn2008-01-133-15/+14
| | | | | | Moved the checks for executing JVM versus target JVM into better locations.
* Fixed ticket #306Iulian Dragos2008-01-101-0/+1
|
* Merged patch from Ross Judson (bean info class ...Iulian Dragos2008-01-096-0/+209
| | | | | Merged patch from Ross Judson (bean info class generation).
* I believe I've fixed the problem with ScriptRun...Geoffrey Washburn2008-01-092-0/+15
| | | | | | | I believe I've fixed the problem with ScriptRunner and Interperter running under jvm-1.4 compiling temporary classfiles with target jvm-1.5.
* Applied patch from Ticket #330.Geoffrey Washburn2008-01-091-1/+1
| | | | | Fixed the parsing of 0 by the JSON library.
* Fixed the usage description.Geoffrey Washburn2008-01-091-1/+1
|
* Applied patch from Ticket #334.Geoffrey Washburn2008-01-091-4/+6
| | | | | Ensures that the modulus of the hashcode is non-negative.
* Corrected uses of g:lines to g:line.Geoffrey Washburn2008-01-091-2/+2
|
* Fixed ticket #305.Geoffrey Washburn2008-01-071-1/+4
|
* fixed t275Burak Emir2008-01-061-2/+2
|
* fixed t301Burak Emir2008-01-041-1/+1
|
* fixed t335Burak Emir2008-01-041-1/+1
|
* if a plugin is given a bad option, stop before ...Lex Spoon2008-01-021-0/+3
| | | | | | if a plugin is given a bad option, stop before running any compilation phases
* Removed -Xplug-types. Now annotationsLex Spoon2007-12-314-23/+13
| | | | | are always allowed on types.
* fix isSubtype0 to more consistentlyLex Spoon2007-12-311-5/+9
| | | | | | ignore annotations once the annotations have been checked
* Be careful of the mode when typing annotations.Lex Spoon2007-12-311-2/+5
| | | | | TERMmode and not TYPEmode.
* fixed t303Burak Emir2007-12-251-1/+2
|
* surgically fixing a broken build.Sean McDirmid2007-12-243-23/+12
|
* surgically fixing a broken build.Sean McDirmid2007-12-241-12/+3
|
* surgically fixing a broken build.Sean McDirmid2007-12-241-5/+5
|
* surgically fixing a broken build.Sean McDirmid2007-12-241-3/+3
|
* surgically fixing a broken build.Sean McDirmid2007-12-241-1/+1
|
* surgically fixing a broken build.Sean McDirmid2007-12-241-1/+15
|
* Fixing my asInstanceOf hack in TypeParser.scala...Sean McDirmid2007-12-241-3/+4
| | | | | | Fixing my asInstanceOf hack in TypeParser.scala, hopefully the separate compilation bug that required the hack has been fixed in 2.6.1
* fixed #283 #289Martin Odersky2007-12-212-1/+5
|
* updated CLDC library for Class[T]michelou2007-12-215-26/+20
|
* fixed t0259Martin Odersky2007-12-211-1/+1
|
* updated RichClassmichelou2007-12-212-5/+5
|
* updated MSIL library for class[T]michelou2007-12-218-92/+40
|
* changed how wildcards are displayedMartin Odersky2007-12-212-11/+16
|
* Fixed problem with wrong signature for sort in ...Martin Odersky2007-12-211-1/+2
| | | | | Fixed problem with wrong signature for sort in CLRTypes
* fixed build problem on ibm's VMMartin Odersky2007-12-203-6/+33
|
* removed deprecated featuresmichelou2007-12-199-268/+14
|
* -target 1.5 now the default.Martin Odersky2007-12-1913-34/+38
|
* fixes to make dual mode build passMartin Odersky2007-12-192-2/+4
|
* dual mode (generics or not) version of compiler...Martin Odersky2007-12-1956-134/+156
| | | | | dual mode (generics or not) version of compiler and libraries
* made Typers more lenient wrt to redundant type ...Martin Odersky2007-12-181-3/+8
| | | | | made Typers more lenient wrt to redundant type parameters
* Added the AnnotationCheckers registry, so thatLex Spoon2007-12-124-9/+83
| | | | | plugins can modify isSubType0 and typed().
* Fixed #153 (thanks to Sean)michelou2007-12-121-16/+21
|
* fixed problem with Stream.flatMap, changed text...Martin Odersky2007-12-112-11/+4
| | | | | | fixed problem with Stream.flatMap, changed text of error message for assume failure in Predef.
* Made all values to be final fields in the gener...Iulian Dragos2007-12-112-2/+3
| | | | | | Made all values to be final fields in the generated bytecode (see ticket #201).
* added message parameter to custom assert methodmichelou2007-12-112-10/+16
|
* better approximation of <:<_erased, fixes bug i...Burak Emir2007-12-101-3/+9
| | | | | better approximation of <:<_erased, fixes bug in PrettyPrinter (oddly)