summaryrefslogtreecommitdiff
path: root/src/compiler
Commit message (Collapse)AuthorAgeFilesLines
* Closes 3627. No review.Iulian Dragos2010-09-131-1/+1
|
* Renamed a file to soothe ant. No review.Paul Phillips2010-09-101-0/+0
|
* Merge branch 'ticket/3435'Iulian Dragos2010-09-091-2/+8
|
* fix fix for (close #3791) and made deprecation ...Lukas Rytz2010-09-092-1/+6
| | | | | | fix fix for (close #3791) and made deprecation for constants work. no review.
* close #3791 according to jason's proposal.Lukas Rytz2010-09-091-5/+16
| | | | | | | long cycle (deprecate, remove, add with new behavior). I tried adding Scaladoc for these members but failed for now, see my message in internals.
* Some modifications to repl classloading to make...Paul Phillips2010-09-073-7/+39
| | | | | | Some modifications to repl classloading to make it usable in managed classloader environments. Contributed by mark harrah. Review by rytz.
* Changes to presentation compiler.Martin Odersky2010-09-075-44/+106
|
* Added type alias so that Response is accessible...Miles Sabin2010-09-071-0/+2
| | | | | | | Added type alias so that Response is accessible via interactive.Global ... necessary for source compatibility with 2.8.0.final. Review by odersky.
* Closes #3803. No Review.Iulian Dragos2010-09-051-3/+3
|
* Closes #3636, crash when unexpected types arriv...Iulian Dragos2010-09-051-1/+4
| | | | | | Closes #3636, crash when unexpected types arrive at specialization. no review.
* Closes #3650.Iulian Dragos2010-09-034-9/+17
|
* better error message for default arguments.Lukas Rytz2010-09-031-0/+3
|
* [scaladoc] Merges Petr's changes from the colla...Gilles Dubochet2010-09-014-11/+24
| | | | | | | [scaladoc] Merges Petr's changes from the colladoc branch to only display less-important information in class comments on demand. Also fixes a bug with index filter. No review.
* Partial fix for #3774.Martin Odersky2010-08-311-132/+170
|
* Fix for #3765.Miles Sabin2010-08-311-0/+3
|
* New wider interface of presentation compiler.Martin Odersky2010-08-307-44/+141
|
* Hardened the bytecode reader.Iulian Dragos2010-08-301-1/+1
|
* Some more finnessing printing in the repl.Paul Phillips2010-08-301-1/+2
|
* partial fix for see #3772.Lukas Rytz2010-08-273-21/+29
| | | | | | | | | | | | {{{ scala> def g { case class C(); object C; } <console>:5: error: C is already defined as (compiler-generated) case class companion object C def g { case class C(); object C; } ^ }}} review by odersky
* minor cleanups, no reviewLukas Rytz2010-08-262-24/+25
|
* Closes #3497.Iulian Dragos2010-08-262-14/+19
|
* Closes #3776. No review.Martin Odersky2010-08-241-1/+1
|
* Fixes #3780. No review.Martin Odersky2010-08-241-1/+1
|
* Correctly locate context tree even on the edges.Hubert Plociniczak2010-08-242-2/+2
|
* for MSIL: Miguel Garcia2010-08-246-152/+725
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (a) The bytecode that Scala.NET emitted had a tough time in passing peverify due to valuetypes (aka structs) and their related managed-pointer types. With these changes (details in [1] and [2]) external APIs exposing valuetypes can be used, yet the extra step of supporting defining valuetypes in Scala programs has been left for later. Supporting the unsigned integral valuetypes (used, among others, by IKVM) is also pending. (b) A very first step towards generics can be found in TypeParser.parseClass, for the time being commented out (search for the label "TODO CLR generics"). It's commented out because without CLRManifests codegen won't work as expected. Details in [3]. review by rytz Refs: [1] http://lamp.epfl.ch/~magarcia/ScalaCompilerCornerReloaded/2010Q3/Bootstr apping3.pdf [2] http://lamp.epfl.ch/~magarcia/ScalaCompilerCornerReloaded/2010Q3/Bootstr apping4.pdf [3] http://lamp.epfl.ch/~magarcia/ScalaCompilerCornerReloaded/2010Q2/SigToTy pe.pdf
* in refchecks, visit the qualifier of irrefutabl...Lukas Rytz2010-08-231-1/+1
| | | | | | in refchecks, visit the qualifier of irrefutable filters. close #3773. review by moors.
* More robust icode loading and fixed an issue wh...Iulian Dragos2010-08-237-10/+27
| | | | | | More robust icode loading and fixed an issue when dead-code eliminating closures that have live static fields.
* Renaming and small tweak in testing.Benchmark f...Iulian Dragos2010-08-236-8/+8
| | | | | Renaming and small tweak in testing.Benchmark for the output format.
* Various fixes to optimizations, and mainly much...Iulian Dragos2010-08-235-11/+29
| | | | | | Various fixes to optimizations, and mainly much better heuristics for inlining. Now even the compiler is some 3% faster! Yeah!
* Fixed various issues with Icode, mainly fixing ...Iulian Dragos2010-08-237-41/+66
| | | | | Fixed various issues with Icode, mainly fixing empty/open blocks.
* less logging.Iulian Dragos2010-08-231-2/+1
|
* Finally look at the right place for inherited m...Iulian Dragos2010-08-231-3/+4
| | | | | | Finally look at the right place for inherited methods that are effectively final.
* Improved the peephole optimizer to use liveness.Iulian Dragos2010-08-232-8/+33
|
* Fix for not looking into Java types when specia...Iulian Dragos2010-08-231-2/+5
| | | | | Fix for not looking into Java types when specializing.
* Small cleanupsIulian Dragos2010-08-233-39/+42
|
* Tweaks for better optimizations.Iulian Dragos2010-08-233-5/+9
|
* Specialize rhs of specialized fields.Iulian Dragos2010-08-231-1/+4
|
* Don't box class parameters when passed to the s...Iulian Dragos2010-08-231-3/+11
| | | | | | Don't box class parameters when passed to the super constructor, from specialized subclasses.
* Optimized away box(unbox(E)) ===> E.Iulian Dragos2010-08-231-1/+8
|
* closes 2462. better implicit error messages.Adriaan Moors2010-08-206-19/+75
| | | | | | | | | | | | | | | | | | @implicitNotFound(msg="Custom error message that may refer to type parameters ${T} and ${U}") trait Constraint[T, U] whenever an implicit argument of type Constraint[A, B] cannot be found, the custom error message will be used, where the type arguments are interpolated in the obvious way note: if the msg in the annotation references non-existing type params, a warning is emitted the patch also cleans up annotation argument retrieval (moved it to AnnotationInfo from Symbol) review by odersky
* closes #3757. got paren wrong during refactoring.Adriaan Moors2010-08-201-1/+1
| | | | | no review
* closes #3575.Adriaan Moors2010-08-206-30/+48
| | | | | | | | | | cloneSymbol now preserves privateWithin -- need to reset it explicitly now when before it was assumed to be not to be carried over rewrote accessibility in overriding checks so they're more readable, but hopefully with same semantics review by odersky
* Fixed build for Java 1.5. No review.Gilles Dubochet2010-08-191-1/+1
|
* [scaladoc] Merges Petr's change to Scaladoc fro...Gilles Dubochet2010-08-1914-183/+673
| | | | | | | | | | | | | [scaladoc] Merges Petr's change to Scaladoc from the Colladoc branch: bugfixes, improvements and refactorings that make it possible to extends Scaladoc into Colladoc. - Layout of index uses jQuery UI panel instead of frameset. - Search boxes have correct width on Firefox. - Scaladoc models the original, untransformed source. - Various internal bugfixes & refactorings. Review by dubochet.
* closes #3777.Adriaan Moors2010-08-191-8/+11
| | | | | no review
* Closes #3763. No review.Martin Odersky2010-08-182-2/+7
|
* Closes #3756. No review.Martin Odersky2010-08-182-5/+9
|
* better fix for see #3667.Lukas Rytz2010-08-172-4/+15
|
* cosmetic fix to GenMSIL. no review.Lukas Rytz2010-08-161-3/+2
|
* Since r22186 scripts wait for all non-daemon th...Paul Phillips2010-08-152-6/+14
| | | | | | | | | | | Since r22186 scripts wait for all non-daemon threads to exit before the script will exit (not doing so was the cause of several other bugs involving early script termination) but this means we must be careful not to introduce unnecessary non-daemon threads in the script infrastructure. Two such sources (now fixed) were the shutdown hook which deletes temporary files and the stream consumers used by Process. Closes #3678, review by harrah.