summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Deprecated non-position versions of newName, ad...Sean McDirmid2008-04-191-1/+5
| | | | | Deprecated non-position versions of newName, added explaining comment.
* fixed #768Martin Odersky2008-04-181-1/+2
|
* scala.swing updateNAME2008-04-1817-39/+74
|
* (1) API docs for private classes and DBC are no...Gilles Dubochet2008-04-187-32/+63
| | | | | | | | (1) API docs for private classes and DBC are no longer generated. Private classes are needed by the compiler but shouldn't be used by clients. DBC is in cold storage (available but not recommended) until DBC2 is ready. (2) Removed "reflect.TypedCode" that is obsolete.
* fixed #768Martin Odersky2008-04-181-2/+3
|
* Fixed #552Philipp Haller2008-04-181-2/+7
|
* scala.swing updateNAME2008-04-1855-123/+994
|
* Applied the patch for Either after some revisions.Geoffrey Washburn2008-04-183-2/+358
|
* Small adjustment to method signature.Philipp Haller2008-04-171-1/+1
|
* Rewrote scala.concurrent.SyncChannel.Philipp Haller2008-04-171-25/+58
|
* Don't make a virtual class its own parent.Geoffrey Washburn2008-04-171-3/+4
| | | | | | | | | | | I think we want overridden virtual parents to be of the form (Virtual.owner).this.Virtual not Virtual.this.Virtual
* Case classes can be virtual (eventually)Geoffrey Washburn2008-04-171-1/+0
|
* Eliminating these.Geoffrey Washburn2008-04-172-465/+0
|
* Correction.Geoffrey Washburn2008-04-171-2/+2
|
* fixed modifiers for virtualsMartin Odersky2008-04-171-7/+9
|
* Added code pretty-printing for *all* of the pos...Geoffrey Washburn2008-04-171-5/+55
| | | | | | Added code pretty-printing for *all* of the possible FLAGS, since many important ones were missing.
* Deprecating newName/0 in fresh name creator so ...Sean McDirmid2008-04-171-1/+1
| | | | | | Deprecating newName/0 in fresh name creator so we can improve IDE stability.
* Fixing newName crash in IDE that resulted form ...Sean McDirmid2008-04-171-1/+1
| | | | | | Fixing newName crash in IDE that resulted form TreeGen calling newName/0.
* optimization for streams as proposed in #498Lukas Rytz2008-04-161-4/+7
|
* Flags.DEFERREDmichelou2008-04-161-1/+1
|
* small fix wrt virtual classesMartin Odersky2008-04-161-1/+1
|
* Fixed #580: error messages from SourceReader (c...Gilles Dubochet2008-04-163-91/+8
| | | | | | Fixed #580: error messages from SourceReader (concerning encoding) are now sent through the standard reporter. Removed obsolete AladdinReader.
* Improvements to genprodGeoffrey Washburn2008-04-1669-155/+341
| | | | | Added uncurry to Function2, swap to Tuple2.
* SuperSabbus JVM 1.4 target also builds Partest.Gilles Dubochet2008-04-161-6/+43
|
* Add a contains(String) method for 1.4Geoffrey Washburn2008-04-161-0/+244
|
* refined type checking rules wrt selftypes for n...Martin Odersky2008-04-151-2/+17
| | | | | refined type checking rules wrt selftypes for new's in valdefs.
* Slight improvements in the documentation.Geoffrey Washburn2008-04-151-3/+3
|
* Tiny fixes to SuperSabbus.Gilles Dubochet2008-04-141-0/+4
|
* fix for #740Sean McDirmid2008-04-141-1/+1
|
* method NodeSeq#\ supports arguments like "@{uri...Burak Emir2008-04-131-7/+37
| | | | | method NodeSeq#\ supports arguments like "@{uri}attrname" for searching prefixed attributes.
* call initMappings() only once (already called o...lorch2008-04-121-3/+0
| | | | | call initMappings() only once (already called on line 135)
* Commented out the println which was causing pos...Geoffrey Washburn2008-04-121-1/+1
| | | | | Commented out the println which was causing pos/t0674.scala to fail.
* made xml.pull functionalBurak Emir2008-04-122-13/+42
|
* putting files back where they belongBurak Emir2008-04-126-0/+0
|
* (1) add devirtualization phase.Martin Odersky2008-04-1115-65/+571
|
* IDE tweaks.Sean McDirmid2008-04-112-10/+16
|
* Added what is needed to properly build, test an...Gilles Dubochet2008-04-111-0/+325
| | | | | | Added what is needed to properly build, test and package a distribution for jvm 1.4.
* fixed #710 (revert some of r14520, but fix for ...Burak Emir2008-04-101-2/+2
| | | | | fixed #710 (revert some of r14520, but fix for #346 still holds)
* fixes "no-symbol doesn't have owner" crash in e...Burak Emir2008-04-101-1/+1
| | | | | fixes "no-symbol doesn't have owner" crash in eclipse build.
* removed for nowMartin Odersky2008-04-101-464/+0
|
* new phase (not yet connected to rest)Martin Odersky2008-04-101-0/+464
|
* Added a simple target to build a JVM 1.4 versio...Gilles Dubochet2008-04-091-0/+6
| | | | | | Added a simple target to build a JVM 1.4 version of the Scala compiler and library.
* Refactored SuperSabbus' targets to be finer gra...Gilles Dubochet2008-04-094-220/+84
| | | | | | | | Refactored SuperSabbus' targets to be finer grained and permit better dependency management (with JVM 1.4 and MSIL support in mind). First effort of refactoring the classpath handling: tools are run with the scala library on the classpath, not on the bootclasspath.
* fixed 495 again (this fix no longer ignores gua...Burak Emir2008-04-091-5/+9
| | | | | fixed 495 again (this fix no longer ignores guards), with test
* fixed #654 and #688Martin Odersky2008-04-097-65/+61
|
* moving files back to proper subdirectoryBurak Emir2008-04-095-0/+0
|
* removing PagedSeq.scala from dotnet-libraryLukas Rytz2008-04-091-0/+1
|
* CLRTypes: mutable sequence was modified while i...Lukas Rytz2008-04-091-3/+2
| | | | | CLRTypes: mutable sequence was modified while iterating over it.
* Renamed method pending in Actor trait to mailbo...Philipp Haller2008-04-091-4/+4
| | | | | Renamed method pending in Actor trait to mailboxSize.
* Fixed #734 issue with filename encoding.Geoffrey Washburn2008-04-091-2/+2
|