summaryrefslogtreecommitdiff
path: root/sources/scalac
Commit message (Collapse)AuthorAgeFilesLines
* - Added code to fix result type of lifted prima...paltherr2003-08-141-1/+4
| | | | | - Added code to fix result type of lifted primary constructors
* - Use nextInfo of constr (this was lost by last...paltherr2003-08-141-1/+1
| | | | | - Use nextInfo of constr (this was lost by last change)
* *** empty log message ***Martin Odersky2003-08-131-0/+1
|
* *** empty log message ***Martin Odersky2003-08-133-7/+11
|
* *** empty log message ***Martin Odersky2003-08-131-2/+30
|
* - Removed now useless switchpaltherr2003-08-131-10/+1
|
* *** empty log message ***Martin Odersky2003-08-133-39/+17
|
* *** empty log message ***Martin Odersky2003-08-121-3/+3
|
* *** empty log message ***Martin Odersky2003-08-126-29/+77
|
* - implemented referential equality (x eq y)schinz2003-08-121-3/+7
|
* - bug fix: emit a GOTO for an Apply node referi...schinz2003-08-121-0/+2
| | | | | | - bug fix: emit a GOTO for an Apply node refering to a LabelDef, and declare generated type as VOID
* - Added primitive ID (Any.eq)paltherr2003-08-122-0/+2
|
* *** empty log message ***Martin Odersky2003-08-117-21/+47
|
* - Removed printing of stack traces if not in de...paltherr2003-08-117-13/+15
| | | | | - Removed printing of stack traces if not in debug mode
* - Renamed log(Object[]) and show(Object[]) into...paltherr2003-08-081-19/+19
| | | | | - Renamed log(Object[]) and show(Object[]) into logAll and showAll
* - Removed condition owner.isPackage() from isPr...paltherr2003-08-081-1/+1
| | | | | - Removed condition owner.isPackage() from isPreloaded
* - Replaced NOPOS by FIRSTPOS or other non zero ...paltherr2003-08-0812-77/+80
| | | | | - Replaced NOPOS by FIRSTPOS or other non zero position
* - quick hack: make sure that the correct code i...schinz2003-08-081-1/+5
| | | | | | | - quick hack: make sure that the correct code is generated for calls to "super" even if the symbol of the method is not correct (ExpandMixins should be fixed, but this is not trivial right now)
* - bug fix: before replacing the symbol for a ca...schinz2003-08-081-1/+1
| | | | | | - bug fix: before replacing the symbol for a call to "super", check that is really exists
* - Removed field cause (using super.cause instead)paltherr2003-08-081-29/+1
|
* *** empty log message ***Martin Odersky2003-08-0614-93/+111
|
* - activated code to write pickle data to class ...schinz2003-08-051-2/+13
| | | | | - activated code to write pickle data to class files
* *** empty log message ***Martin Odersky2003-08-054-26/+21
|
* *** empty log message ***Martin Odersky2003-08-051-7/+8
|
* *** empty log message ***Martin Odersky2003-08-046-23/+30
|
* - added a hack to make sure that flags are tran...schinz2003-08-041-0/+2
| | | | | | | - added a hack to make sure that flags are transformed correctly before we check them to see if the owner of a method is an interface; this should really be cleaned by transforming flags separately from types.
* - Added support for inlining default bootclassp...paltherr2003-08-041-0/+9
| | | | | | - Added support for inlining default bootclasspath into specified bootclasspath
* *** empty log message ***Martin Odersky2003-08-0413-169/+357
|
* - Added trabsformation of <local>.this into <ow...paltherr2003-08-021-0/+9
| | | | | - Added trabsformation of <local>.this into <owner>.this
* - Changed localDummy to generate non-empty namespaltherr2003-08-022-1/+9
|
* - Added show methodspaltherr2003-07-311-7/+65
|
* *** empty log message ***Martin Odersky2003-07-317-75/+87
|
* *** empty log message ***Martin Odersky2003-07-3137-537/+590
|
* - Changed owner of STRING_PLUS_ANY from STRING ...paltherr2003-07-301-2/+2
| | | | | - Changed owner of STRING_PLUS_ANY from STRING to JAVA_STRING
* - Repolaced Tree argument of This and Super nod...paltherr2003-07-3011-108/+72
| | | | | - Repolaced Tree argument of This and Super nodes by a Name argument
* - Added TypeNamespaltherr2003-07-301-0/+15
|
* - modified phase to make it compatible with sep...schinz2003-07-302-53/+73
| | | | | | | - modified phase to make it compatible with separate compilation: transformInfo now adds the outer argument to the constructor type, and this is no longer done during the tree transformation
* - Added $Id$paltherr2003-07-301-0/+2
|
* Added:cremet2003-07-307-28/+232
| | | | | | | - collecting of documentation comments. - options for scaladoc - a class to load a documentation module.
* refactoring: removed class FiniteAutom.buraq2003-07-295-161/+267
| | | | | | | | | different types, so many casts were needed. In fact, FiniteAutom is not used anywhere. now fixed. fields are migrated to subclasses DetWordAutom and NondetWordAutom, with more specific types
* - added isLabel methodschinz2003-07-291-0/+5
|
* - implemented (but didn't test because of lack ...schinz2003-07-291-10/+35
| | | | | - implemented (but didn't test because of lack of test cases) LabelDefs
* - bug fix: for calls to "super", use the name o...schinz2003-07-281-1/+3
| | | | | | - bug fix: for calls to "super", use the name of the super-class instead of the name of the method owner for INVOKESPECIAL
* - avoid creating several temporary variables wh...schinz2003-07-281-24/+14
| | | | | | | - avoid creating several temporary variables when more than one call to "==" appears in a single method, - prepared for output of Scala attribute containing the symbol table
* "freshening" of patterns before calling algbera...buraq2003-07-282-77/+80
| | | | | | | "freshening" of patterns before calling algberaic matcher ensures than no symbol is used more than once in ValDefs
* - Changed some hasSymbol into definesSymbolpaltherr2003-07-281-3/+3
|
* - Made field of TreeGen finalpaltherr2003-07-273-61/+50
| | | | | | | | | | | - Added methods TreeGen.mkTypeParam - Added methods TreeGen.mkParam - Removed methods TreeGen.Param - Removed some methods TreeGen.ValDef - In TreeGen, inlined calls to setSymbol in calls to make.<Node> - Changed TreeGen.ValDef to return a ValDef - Removed some useless casts
* - Rewrote and reorganized several parts.paltherr2003-07-272-313/+330
| | | | | | - Fixed some bugs (missing clones, wrong owners, missing sharing (param symbols), this types, new of mixed in mixin, ...).
* - Made field Entry.owner finalpaltherr2003-07-271-2/+13
| | | | | - Added method cloneScope
* - Removed useless call clazz.info()paltherr2003-07-271-1/+0
|