summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated several tests for MSILmichelou2007-08-177-140/+137
|
* added test for EMACS environment variable (jline)michelou2007-08-163-10/+9
|
* fixed Philipp's bug #1256 for real this time, u...Burak Emir2007-08-156-30/+145
| | | | | | fixed Philipp's bug #1256 for real this time, use switch for characters (includes ugly boxing bug workaround), use StdNames in CodeFactory
* disabled test for #1196Burak Emir2007-08-141-1/+2
|
* reverted typer change, no feature #1196Burak Emir2007-08-141-2/+14
|
* implemented #1196 by typer change and added tes...Burak Emir2007-08-142-2/+46
| | | | | implemented #1196 by typer change and added test cases
* small opts, fixed #1270, if target is Literal, ...Burak Emir2007-08-143-12/+28
| | | | | | small opts, fixed #1270, if target is Literal, generate Literal instead of jump (no sharing)
* Integrated Itay Neeman's patch to allow port mu...Philipp Haller2007-08-143-6/+16
| | | | | | Integrated Itay Neeman's patch to allow port multiplexing for remote actors.
* fixed MSIL tests (.dll not found)michelou2007-08-144-10/+18
|
* more small changes aimed at efficiency, deleted...Burak Emir2007-08-143-234/+173
| | | | | more small changes aimed at efficiency, deleted dead code
* restructuring pattern translation (rewrite rule...Burak Emir2007-08-143-311/+263
| | | | | | restructuring pattern translation (rewrite rule result to tree), small opts
* Definitions, Par: encoding equality patterns us...Burak Emir2007-08-137-32/+134
| | | | | | | Definitions, Par: encoding equality patterns using <equals> pattern type code generation: if pattern body is throw, generate throw directly (no sharing) tests:moved unboxmatch into patmatnew
* "binaries" depends on "build.strap"Burak Emir2007-08-131-1/+1
|
* Par..: normalizes sym for case class test, if n...Burak Emir2007-08-132-7/+11
| | | | | | Par..: normalizes sym for case class test, if needed Pat..: removed fallback mechanism for unexpected exceptions
* target "binaries" depends on "setup"Burak Emir2007-08-121-0/+1
|
* argh, fixed dependencies, and added {stability....Burak Emir2007-08-101-2/+3
| | | | | argh, fixed dependencies, and added {stability.tool} property
* stability.tool plus dependenciesBurak Emir2007-08-101-5/+12
|
* use SymList instead of SymSet to avoid spurious...Burak Emir2007-08-102-18/+22
| | | | | use SymList instead of SymSet to avoid spurious stability problem
* ParallelMatching: Burak Emir2007-08-096-180/+311
| | | | | | | * uses requestBody to optimize use of LabelDefs * improved representation of bodies and substitutions GenICode: output current compilation unit in assertionerror, for easier debugging
* Undid changes to implicit conversions to java.l...Iulian Dragos2007-08-091-7/+7
| | | | | | Undid changes to implicit conversions to java.lang boxed classes except for Boolean (since the rest were introduced in 1.5).
* fix #1257,#1258Burak Emir2007-08-083-30/+69
|
* Changed implicit conversions to java's boxed ty...Iulian Dragos2007-08-081-8/+8
| | | | | | | Changed implicit conversions to java's boxed types to use the static method '.valueOf' instead of directly creating new instances (for better performance, according to java doc).
* elim'ed dead code from Par...Burak Emir2007-08-072-5/+1
|
* (no commit message)Burak Emir2007-08-072-4/+4
|
* print the plugins list more quickly, albeit wit...Lex Spoon2007-08-071-1/+1
| | | | | | print the plugins list more quickly, albeit with less sanity checking on the plugins
* 2x symbol -> typeSymbolBurak Emir2007-08-071-2/+2
|
* fixed #1213, added test caseBurak Emir2007-08-072-6/+31
|
* fixed #1215 unapply typing bugBurak Emir2007-08-072-2/+34
|
* Fixing indexOf bug.Sean McDirmid2007-08-071-7/+9
|
* create a new Run before computing the phases in...Lex Spoon2007-08-061-0/+1
| | | | | | create a new Run before computing the phases in phaseDescription (see bug #1255)
* - annotations can follow a type in addition to ...Lex Spoon2007-08-063-15/+19
| | | | | | | - annotations can follow a type in addition to preceding it - annotations are traversed by tree Traverser's - the internal representation of declaration annotations is now type checkable
* use -Xpluginsdir instead of -extdir to find plu...Lex Spoon2007-08-061-1/+1
| | | | | use -Xpluginsdir instead of -extdir to find plugin jar's
* type check the trees in declaration annotationsLex Spoon2007-08-061-6/+25
|
* - changed the default location for pluginsLex Spoon2007-08-061-4/+15
| | | | | - changed -Xplugin-opt: back to -P:
* use termSymbol to detect Ident(object) pattern,...Burak Emir2007-08-064-13/+26
| | | | | | use termSymbol to detect Ident(object) pattern, marked problematic outer-tests
* replaced `_.tpe.symbol.tag' with getCaseTag(_) ...Burak Emir2007-08-063-15/+7
| | | | | replaced `_.tpe.symbol.tag' with getCaseTag(_) calls
* Added new assertion to prevent invalid conversi...Iulian Dragos2007-08-061-0/+1
| | | | | | Added new assertion to prevent invalid conversion from reaching the jvm backend.
* Remote actor proxies are now cached.Philipp Haller2007-08-062-47/+82
|
* Fixed #1248 by resetting LAZY flags on bridge m...Iulian Dragos2007-08-061-1/+1
| | | | | Fixed #1248 by resetting LAZY flags on bridge methods.
* refined fixBurak Emir2007-08-061-3/+17
|
* -Ycasetags optimizationBurak Emir2007-08-064-18/+37
| | | | | fixed 1253
* Updated STARR to Scala-2.6.0-RC1michelou2007-07-275-6/+6
|
* Iterator -> Iterablemichelou2007-07-271-3/+3
|
* Added test for structural refinement error cases.Gilles Dubochet2007-07-272-0/+64
|
* update check files with -uncheckedmichelou2007-07-272-2/+2
|
* “unchecked” is a standard option again (was -X).Gilles Dubochet2007-07-272-9/+9
|
* fixed bugs 1245,1246Martin Odersky2007-07-273-17/+14
|
* list plugins help more quickly, albeit at the costLex Spoon2007-07-261-14/+26
| | | | | of being incorrect if there are conflicting plugins installed
* disabled dependent method types unless -Xexperi...Martin Odersky2007-07-261-3/+5
| | | | | disabled dependent method types unless -Xexperimental
* Fixed bug1210Martin Odersky2007-07-264-3/+62
|