summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix and test case for #1747.Paul Phillips2009-02-241-0/+1
|
* removed deprecated for-loops and unitsmichelou2009-02-248-65/+87
|
* removed deprecated for-loopsmichelou2009-02-2418-68/+72
|
* fixed several problems with cyclic references u...Martin Odersky2009-02-2312-34/+2486
| | | | | | fixed several problems with cyclic references uncovered by experimenting with collections. Added early type definitions.
* fix versionString scaladocstepancheg2009-02-231-3/+3
|
* added a hook for annotation checkers in Typers....Tiark Rompf2009-02-232-2/+33
| | | | | added a hook for annotation checkers in Typers.adapt
* Continuation of r17177 to also check type annot...Paul Phillips2009-02-231-15/+21
| | | | | | Continuation of r17177 to also check type annotations; test case broadened accordingly.
* Fixed TokenMetric tool (for counting tokens).Gilles Dubochet2009-02-231-13/+7
|
* Fix and test case for #935; added test in RefCh...Paul Phillips2009-02-231-6/+23
| | | | | | Fix and test case for #935; added test in RefChecks to confirm that parameterized annotations conform to type bounds.
* When inferring a type is scala.Whatever, have t...Paul Phillips2009-02-222-5/+8
| | | | | | When inferring a type is scala.Whatever, have to take care to _root_ qualify it so a package named scala doesn't subvert it. Fixes #430.
* scala.util.Properties: release InputStream afte...stepancheg2009-02-221-2/+13
| | | | | scala.util.Properties: release InputStream after properties loading
* scala.util.Properties.versionString: fix defaul...stepancheg2009-02-221-1/+1
| | | | | | scala.util.Properties.versionString: fix default value that is used if library.properties file cannot be loaded
* Proposed fix for #1735; may need refinement, bu...Paul Phillips2009-02-221-18/+8
| | | | | | Proposed fix for #1735; may need refinement, but I think this patch is less dangerous than the already commited patch for #363.
* Fix for #1387.David MacIver2009-02-191-1/+1
| | | | | | Unfortunately I can't figure out a good way to test this. But it doesn't seem to break anything existing.
* Fix and test for #1659Antonio Cunei2009-02-191-2/+2
|
* Look for main method in companion object and ad...Paul Phillips2009-02-192-45/+60
| | | | | | Look for main method in companion object and add a static forwarder to companion class if possible + test case; fixes bug #363.
* supplemented lacking documentation for sameElem...Paul Phillips2009-02-191-1/+1
| | | | | supplemented lacking documentation for sameElements; addresses #888.
* Improved error messages for certain illegal ove...Paul Phillips2009-02-191-0/+5
| | | | | | Improved error messages for certain illegal overriding situations, plus test cases. Resolves bug #276.
* Fix for #1700.Paul Phillips2009-02-191-2/+2
|
* Fix for #1465 - java annotations aren't paramet...Paul Phillips2009-02-191-1/+1
| | | | | Fix for #1465 - java annotations aren't parameterized.
* Issue warning when attempting to refine Unit, p...Paul Phillips2009-02-181-1/+11
| | | | | Issue warning when attempting to refine Unit, plus test case; bug #284.
* Fix and test case for #1565; an anonymous funct...Paul Phillips2009-02-181-4/+12
| | | | | | | Fix and test case for #1565; an anonymous function can now be used as a statement (primarily for use in the interpreter) unless it cannot be distinguished from a self-type declaration.
* Fix for #460 (and its duplicate #1413) plus tes...Paul Phillips2009-02-181-1/+8
| | | | | | Fix for #460 (and its duplicate #1413) plus test case. Method f can now be invoked via (f _)(x) without requiring .apply(x).
* Removed obsolete methods and simplified handlin...Philipp Haller2009-02-182-23/+14
| | | | | | Removed obsolete methods and simplified handling of thread-based suspension.
* fix for #1721Lukas Rytz2009-02-171-9/+2
|
* documentation fix, bug #1487Paul Phillips2009-02-171-4/+2
|
* merged changes from maven2 branch (include scal...Lukas Rytz2009-02-174-0/+106
| | | | | merged changes from maven2 branch (include scalap as maven package)
* Eradicated bug #1711Antonio Cunei2009-02-161-1/+2
|
* Fix for #1638.Paul Phillips2009-02-161-0/+1
|
* Fix and test case for #1623.Paul Phillips2009-02-161-1/+1
|
* Fix for bug #473 and test case.Paul Phillips2009-02-161-0/+9
|
* hopefully fixed the build by fixing deSkolemize...Martin Odersky2009-02-169-72/+115
| | | | | | hopefully fixed the build by fixing deSkolemize, and adapting the new collection libraries to stricter override checking.
* Added -make flag and supporting functionality f...David MacIver2009-02-154-1/+314
| | | | | | | | | Added -make flag and supporting functionality for recompilation of only changed files and their dependencies. An email to scala-internals will follow shortly to explain how this works.
* Fixed an ambiguity problem with implcits, and a...Martin Odersky2009-02-153-12/+32
| | | | | | | Fixed an ambiguity problem with implcits, and a spurious cyclic reference error mentioned by Jorge. Tightened overriding checks (test case is new collection libraries).
* removed generic/mutable, generic/covariant pack...Martin Odersky2009-02-1510-439/+0
| | | | | removed generic/mutable, generic/covariant packages
* new version of collection librariesMartin Odersky2009-02-1374-494/+2876
|
* Allow newlines between modifiers and declaratio...Paul Phillips2009-02-121-0/+3
| | | | | Allow newlines between modifiers and declaration; bug #442.
* Fix for #1185Antonio Cunei2009-02-121-1/+1
|
* terminated infinite loop in typedTypeApply; see...Paul Phillips2009-02-121-1/+2
| | | | | terminated infinite loop in typedTypeApply; see bug #278
* A few more very minor fixes based on input from...Paul Phillips2009-02-124-5/+4
| | | | | A few more very minor fixes based on input from findbugs.
* widened access check for readResolve to include...Paul Phillips2009-02-121-1/+1
| | | | | | widened access check for readResolve to include all access modifiers; fixes bug #1385
* Alters four meaningless equality comparison dis...Paul Phillips2009-02-124-5/+5
| | | | | | | Alters four meaningless equality comparison discovered by findbugs; alters because some may still have room for improvement, but all should be closer to correct than "certainly not." Closes bug #1444.
* Generalized PhasesSetting to accept "all" as a ...Paul Phillips2009-02-112-30/+21
| | | | | | | | Generalized PhasesSetting to accept "all" as a phase and then apply that setting to all phases. Implements ticket #924, primarily for -Yprint:all. Removed option -Ylog-all as an unnecessary special case (use -Ylog:all instead.)
* fixed bug #1535, added test casePaul Phillips2009-02-111-8/+12
|
* rewrote an infinite loop spotted by findbugs to...Paul Phillips2009-02-111-7/+2
| | | | | rewrote an infinite loop spotted by findbugs to be more finite
* Add recognition that null.isInstanceOf[T] is no...Paul Phillips2009-02-101-4/+8
| | | | | | Add recognition that null.isInstanceOf[T] is not a null dereference, closing out bug #1356.
* Fixes and test cases for #944 and #1523.Paul Phillips2009-02-102-1/+5
|
* Removes underscore from the list of characters ...Paul Phillips2009-02-101-1/+1
| | | | | | | Removes underscore from the list of characters used during semicolon inference which it believes cannot start a statement on a new line, fixing bug #756; adds 1 test case, updates 1.
* version file addedilyas2009-02-102-1/+1
|
* map page updatedilyas2009-02-106-10/+31
| | | | | scalap flags adjusted according to man page