summaryrefslogtreecommitdiff
path: root/sources
Commit message (Collapse)AuthorAgeFilesLines
* - For objects whose name doesn't coincide with ...mihaylov2004-03-292-59/+120
| | | | | | | | - For objects whose name doesn't coincide with the name of a class, introduce a class with the name of the object with static methods with the same signatures as the methods of the object that forward the call to the instance methods of the object.
* - Removed now useless code for constructorspaltherr2004-03-281-37/+7
|
* - Added creation of general access methods in E...paltherr2004-03-282-38/+73
| | | | | - Added creation of general access methods in ExplicitOuter
* - Added Methods mapSymbol and mapTypepaltherr2004-03-281-10/+49
|
* - Remove useless setNameDecoding(false)paltherr2004-03-281-1/+1
|
* *** empty log message ***Martin Odersky2004-03-261-26/+28
|
* *** empty log message ***Martin Odersky2004-03-262-2/+3
|
* *** empty log message ***Martin Odersky2004-03-261-0/+15
|
* *** empty log message ***Martin Odersky2004-03-2612-142/+348
|
* - Added support for the Any.eq methodmihaylov2004-03-261-54/+28
| | | | | - Removed some unused methods
* - Moved a MSIL specific feature from Erasure to...mihaylov2004-03-262-20/+59
| | | | | | - Moved a MSIL specific feature from Erasure to the TypeCreator class of the MSIL backend
* added toString methodburaq2004-03-261-0/+1
|
* minor improvement in error messagesburaq2004-03-262-8/+26
|
* bugfixburaq2004-03-261-25/+32
|
* bugfix scala block parsingburaq2004-03-252-32/+42
|
* - Added a methods newAccessMethod and isAccessM...paltherr2004-03-251-6/+20
| | | | | - Added a methods newAccessMethod and isAccessMethod
* - Added a setStringBuffer(null) in toString met...paltherr2004-03-254-16/+20
| | | | | - Added a setStringBuffer(null) in toString methods of SymbolNameWriter
* - Removed ".type" for NoPrefixpaltherr2004-03-251-1/+0
|
* - Added appendSymbol with prefix in SymbolNameW...paltherr2004-03-255-5/+51
| | | | | | - Added appendSymbol with prefix in SymbolNameWriter Added toString - methods in SymbolNameWriter
* - Fixed some isSameAs to compare types in next ...paltherr2004-03-241-7/+6
| | | | | - Fixed some isSameAs to compare types in next phase
* - Reremoved bridge methods (for java 1.5)paltherr2004-03-231-3/+6
|
* - Remove TYPE_TYPEpaltherr2004-03-231-3/+1
|
* - Remove unneeded meta tagpaltherr2004-03-231-1/+0
|
* fixed handling of {buraq2004-03-232-28/+68
|
* obsoleteburaq2004-03-231-41/+0
|
* - Split scala.tools.util.AbstractFile into seve...paltherr2004-03-2315-759/+921
| | | | | | | | | | - Split scala.tools.util.AbstractFile into several files Added - scala.tools.util.DirectoryPath Added scala.tools.util.VirtualDirectory - Changed interface of scala.tools.util.AbstractFile Rewrote - scala.tools.util.ZipArchive (merged ZipArchive and JarArchive) Moved - ClassPath to scala.tools.util Changed ClassPath and PackageParser to - rely on DirectoryPath for file lookups
* - Added scala.tools.EmptyIteratorpaltherr2004-03-231-0/+48
|
* - Implemented the actual metadata import in doC...mihaylov2004-03-221-6/+7
| | | | | | - Implemented the actual metadata import in doComplete() Removed some - unused diagnostic printout statements
* Bugfix: fixed filter method to remove elemente ...stenman2004-03-224-7/+6
| | | | | | Bugfix: fixed filter method to remove elemente when pwd(element) instead of p(element)
* - Added support for bitwise logical operations ...mihaylov2004-03-222-6/+17
| | | | | - Added support for bitwise logical operations on .NET enumerations.
* - Removed FILE_SEPARATORpaltherr2004-03-211-3/+0
|
* - Added functions to gather files from paths an...paltherr2004-03-212-73/+75
| | | | | | - Added functions to gather files from paths and extension dirs in ClassPath
* - Moved creation of root class loader into Globalpaltherr2004-03-213-5/+9
| | | | | - Changed Symbol.newRootClass to take a Global as argument
* - Removed reference from CLRPackageParser on Pa...paltherr2004-03-212-14/+9
| | | | | - Removed reference from CLRPackageParser on PackageParser
* - Avoided recomputations of files that are alre...paltherr2004-03-216-48/+90
| | | | | - Avoided recomputations of files that are already done in PackageParser
* - Standardized names used in ClassPathpaltherr2004-03-215-52/+71
|
* - Simplified method lateEnter in Analyzer and A...paltherr2004-03-215-24/+21
| | | | | | | - Simplified method lateEnter in Analyzer and AnalyzerPhase Added - Global.compileLate Changed SourceCompleter and Analyer to use it - Removed mixinOnly from SourceCompleter
* - Added method AbstractFile.toString and used itpaltherr2004-03-215-4/+9
|
* - Fixed getSourceFile for case where file does ...paltherr2004-03-211-0/+2
| | | | | - Fixed getSourceFile for case where file does not exist
* - Changed Scanner and SourceFile to work with c...paltherr2004-03-216-79/+87
| | | | | - Changed Scanner and SourceFile to work with chars instead of bytes
* - Added class scala.util.tools.SourceReaderpaltherr2004-03-211-0/+155
|
* - Added class CharArrayFilepaltherr2004-03-211-0/+24
|
* - Fixed getSourceFile for case where file does ...paltherr2004-03-211-1/+4
| | | | | - Fixed getSourceFile for case where file does not exist
* - Added flag -encodingpaltherr2004-03-212-0/+8
|
* - Added methods Global.getSourceFilepaltherr2004-03-216-56/+62
| | | | | | - Renamed bytes into content in SourceFile - Replaced SourceFile constructors by SourceFile(AbstractFile, byte[])
* - Replaced file String by an AbstractFile in So...paltherr2004-03-2112-126/+104
| | | | | - Replaced file String by an AbstractFile in SourceFile
* - Added VirtualFile and ByteArrayFilepaltherr2004-03-211-0/+75
|
* - Moved AbstractFile from scalac.util into scal...paltherr2004-03-218-19/+26
| | | | | - Moved AbstractFile from scalac.util into scala.tools.util
* - Untabifiedpaltherr2004-03-211-3/+3
|
* - Removed Position and *SourceFile* from ch.epf...paltherr2004-03-214-561/+0
| | | | | - Removed Position and *SourceFile* from ch.epfl.lamp.util