summaryrefslogtreecommitdiff
path: root/src/compiler
Commit message (Collapse)AuthorAgeFilesLines
* just converting tabs to spaces to make upcoming...Adriaan Moors2009-06-041-134/+134
| | | | | | just converting tabs to spaces to make upcoming tcpolyinfer patch apply cleanly
* removed code for parsing old pickle format.Lukas Rytz2009-06-033-165/+18
|
* Working around failing names-defaults test.Paul Phillips2009-06-021-2/+2
|
* fixed some problems with positions.Martin Odersky2009-06-025-38/+70
|
* Moved NameTransformer from the compiler to the ...Paul Phillips2009-06-027-154/+10
| | | | | | Moved NameTransformer from the compiler to the library because I need access to the logic for reflection.
* named argument disallowed when assignment expre...Lukas Rytz2009-06-022-12/+47
| | | | | | named argument disallowed when assignment expression would typecheck. minor fixe to names / defaults.
* Unpositionable children don't contribute to par...Miles Sabin2009-06-012-2/+5
| | | | | | Unpositionable children don't contribute to parents position; the typechecker shouldn't swallow interactive control exceptions.
* Modify TreeSet to use Ordering instead of Order...David MacIver2009-06-015-13/+8
| | | | | | Modify TreeSet to use Ordering instead of Ordered to bring it inline with TreeMap and improve performance.
* Allow the content of SourceFiles backed by inte...Miles Sabin2009-05-311-2/+8
| | | | | | Allow the content of SourceFiles backed by interactive buffers to be updated.
* Jumbo sized rewrite/cleanup of SymbolicXMLBuilder.Paul Phillips2009-05-301-276/+158
|
* big overhaul of annotations implementation.Lukas Rytz2009-05-3042-1716/+1927
|
* Minor duplication removing refactoring.Paul Phillips2009-05-301-27/+22
|
* fixed MSIL build and added ".scala_dependencies...Lukas Rytz2009-05-301-2/+2
| | | | | fixed MSIL build and added ".scala_dependencies" to svn:ignore
* Named and default argumentsLukas Rytz2009-05-3058-741/+1833
| | | | | | | - MethodTypes now have (params: List[Symbol]) - "copy"-methods for case classes - the "copy" object in the compiler is now called "treeCopy"
* Endless exploration of exception handling synta...Paul Phillips2009-05-292-15/+11
| | | | | Endless exploration of exception handling syntax continues.
* Exception handling approaching platonic ideal.Paul Phillips2009-05-291-7/+8
|
* Continuing to refine exception composition.Paul Phillips2009-05-291-14/+11
|
* first attempt at command completion; more fiddl...Martin Odersky2009-05-295-46/+106
| | | | | first attempt at command completion; more fiddling with positions
* fixed failing test affecting bug1960.Martin Odersky2009-05-291-1/+1
|
* rest of last commitMartin Odersky2009-05-294-10/+16
|
* Added method to remove compilation units when t...Miles Sabin2009-05-291-0/+3
| | | | | Added method to remove compilation units when they become uninteresting.
* minor twiddling with position.Martin Odersky2009-05-295-28/+109
|
* Refactored the existing dependency tracker and ...Iulian Dragos2009-05-2912-140/+478
| | | | | | Refactored the existing dependency tracker and added a 'build manager' interface for IDE use.
* Riffing off the removal of the cldc library, re...Paul Phillips2009-05-2915-197/+119
| | | | | | Riffing off the removal of the cldc library, removed forCLDC and its special cases. Not as much fun as removing inIDE, but still fun.
* more work on the interactive mode.Martin Odersky2009-05-288-54/+78
|
* Further development of the Numeric and Ordering...Paul Phillips2009-05-281-1/+1
| | | | | | | Further development of the Numeric and Ordering traits. Replaced Predef implicits from everything => Ordered with a single implicit from Ordering => Ordered.
* checking in forgotten fileMartin Odersky2009-05-281-0/+205
|
* More precise local variable rangesIulian Dragos2009-05-281-2/+2
|
* fixed package objects for MSILLukas Rytz2009-05-281-0/+4
|
* more work on rangepositions.Martin Odersky2009-05-2834-162/+133
|
* Deprecated "elements" method moved to "Iterable...Gilles Dubochet2009-05-272-4/+0
| | | | | Deprecated "elements" method moved to "Iterable" were it belongs.
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-2754-137/+144
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* Added interpreter binding for "lastException" w...Paul Phillips2009-05-271-1/+5
| | | | | | | Added interpreter binding for "lastException" which caches the last thrown exception. So you can say e.g. lastException.printStackTrace whenever you like.
* Put exception unwrapping back in interpreter as...Paul Phillips2009-05-271-1/+7
| | | | | | Put exception unwrapping back in interpreter as it wasn't actually working.
* Fixed problem that spurious caused exhaustivene...Martin Odersky2009-05-2711-45/+145
| | | | | | Fixed problem that spurious caused exhaustiveness warning for RefChecks. Enriched positions and worked on the interactive compiler.
* Reverted bogus fix.Miles Sabin2009-05-271-2/+0
|
* Reset the tree as well ...Miles Sabin2009-05-271-0/+2
|
* Not sure why the disabled test did not get comm...Martin Odersky2009-05-261-0/+1
| | | | | Not sure why the disabled test did not get committed last time.
* removed deprecated files; more changes to repl.Martin Odersky2009-05-265-10/+26
|
* new test repl for interactive mode; bug fixesMartin Odersky2009-05-266-86/+98
|
* A big yet interim patch emerging from my attemp...Paul Phillips2009-05-2612-402/+240
| | | | | | | | | | | | | | | | | | A big yet interim patch emerging from my attempts to centralize common classloader-related code. As it turns out, not that much of the patch is directly associated with that. Most of it is cleanup in the neighborhoods I was visiting, but there are a few new library files about which I'm open to feedback: scala/util/control/Exception - lots of exception handling code. scala/net/Utility - what would be the first file in scala.net.*, more code to follow if that sounds like a good package idea. scala/util/ScalaClassLoader - mostly convenience methods right now, more sophistication to come Also, this adds a :jar command to the repl which adds a jar to your classpath and replays the session.
* fixed build problemMartin Odersky2009-05-261-2/+5
|
* added Synthetic Positions; refactored interacti...Martin Odersky2009-05-2610-133/+253
| | | | | added Synthetic Positions; refactored interactive.Global
* moved internal exception out of a syncvar catchMartin Odersky2009-05-261-1/+1
|
* SyncVars now return Either with a ThrowableMartin Odersky2009-05-262-97/+98
|
* Export new packages; minor updates to interactive.Miles Sabin2009-05-262-11/+11
|
* new presentation compiler designMartin Odersky2009-05-259-173/+421
|
* Modified UniqueTypes not to interfere with thei...Paul Phillips2009-05-251-7/+4
| | | | | | Modified UniqueTypes not to interfere with their hashCode. Should fix the random build failures involving missing keys (once it's in starr.)
* Unbreak the build.Miles Sabin2009-05-221-1/+2
|
* some documentation; statistics wrt implicits; n...Martin Odersky2009-05-2213-119/+339
| | | | | some documentation; statistics wrt implicits; new presentation compiler