summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* now correctly fix #2868. no reviewLukas Rytz2010-01-275-20/+42
|
* Forgot to commit the change. No review.Hubert Plociniczak2010-01-271-0/+2
|
* Closes #2966. Review by milessabin.Hubert Plociniczak2010-01-273-7/+14
|
* reverting r20688 for now, no reviewLukas Rytz2010-01-275-41/+19
|
* fix pickle format doc. no reviewLukas Rytz2010-01-271-1/+1
|
* close #2868.Lukas Rytz2010-01-275-19/+41
|
* Made actor-receivewithin test deterministic.Philipp Haller2010-01-271-0/+2
|
* Cleaning up. No review.Hubert Plociniczak2010-01-261-3/+1
|
* Refactored some of the code from r20624 thanks ...Hubert Plociniczak2010-01-262-34/+12
| | | | | Refactored some of the code from r20624 thanks to Iulian's review.
* Refinements to the recent repl patches.Paul Phillips2010-01-2615-192/+445
| | | | | | | | | | | | | | | | few more things, like literals (1.<tab>, "abc".<tab>). A completion aware case class walker which leverages the names of the case fields for completion. For instance: :power val x = new ProductCompletion(mkTree("def f(x: Int, y: Int) = f(5, 10) + f(10, 20)") x.<tab> mods name rhs tparams tpt vparamss x.rhs.fun.<tab> name qualifier scala> x.rhs.fun.qualifier res3: scala.tools.nsc.ast.Trees$Apply = f(5, 10)
* Another batch of tests. No review.Hubert Plociniczak2010-01-2614-0/+68
|
* Fixed a number of faulty Scaladoc comments in l...Gilles Dubochet2010-01-2638-393/+222
| | | | | | Fixed a number of faulty Scaladoc comments in library and compiler sources. No review.
* Access modifiers added for certain members and ...Aleksandar Pokopec2010-01-262-8/+15
| | | | | | Access modifiers added for certain members and some refactoring in Regex.
* Hack for the refined build manager to print inf...Hubert Plociniczak2010-01-262-5/+14
| | | | | | Hack for the refined build manager to print info in a deterministic way. No review.
* More tests, plus missing file. No review.Hubert Plociniczak2010-01-2611-0/+58
|
* Changed the info statements in refined build ma...Hubert Plociniczak2010-01-2660-2/+300
| | | | | | | | Changed the info statements in refined build manager to print the information in more consistent way, so that we can test it using partest. Added more tests for build manager, more to follow... No review.
* Fixes #2766. Review by phaller.Aleksandar Pokopec2010-01-252-1/+25
|
* Fixed stability problem with build.Martin Odersky2010-01-254-4/+4
|
* Test file for matching with replace.Aleksandar Pokopec2010-01-251-0/+27
|
* Replacement in matching can now be done by prov...Aleksandar Pokopec2010-01-251-1/+51
| | | | | | Replacement in matching can now be done by providing function arguments for replacement. Fixes #2761. Review by phaller.
* Use file paths for equality and hashCode to dea...Miles Sabin2010-01-253-6/+6
| | | | | | Use file paths for equality and hashCode to deal with mixed-type file equality test issues in the IDE. Fixes #2931.
* [scaladoc] Classes `FunctionX`, `ProductX`, and...Gilles Dubochet2010-01-251-1/+9
| | | | | | | [scaladoc] Classes `FunctionX`, `ProductX`, and `TupleX`, for `X` greater than 2, are not listed. Contributed by Pedro Furlanetto, checked by dubochet, no review.
* close #2929.Lukas Rytz2010-01-253-1/+6
|
* Fixed #2497: replaceInstruction now uses refere...Iulian Dragos2010-01-251-1/+1
| | | | | | Fixed #2497: replaceInstruction now uses reference equality. No review necessary.
* [scaladoc] Deprecated methods are striked-out.Gilles Dubochet2010-01-254-4/+21
|
* small improvements in building newlibs / newfor...Lukas Rytz2010-01-251-7/+15
| | | | | small improvements in building newlibs / newforkjoin. no review.
* Fix ant task for build manager partest. no review.Hubert Plociniczak2010-01-252-2/+3
|
* First test for buildmanager. No review necessaryHubert Plociniczak2010-01-245-0/+21
|
* Added new target for partest for testing Build ...Hubert Plociniczak2010-01-249-105/+286
| | | | | | | | | | | Added new target for partest for testing Build Manager behaviour. Updated Refined Build Manager for consistency. --buildmanager requires the test file that describes actions to be done on the refined build manager (compiling files, making changes to the classes), sources of changes, the check file and the initial scala source files. Cleaned up some code in partest, refactored some obvious code duplication. Tests to follow... Review by phaller.
* Fixed dead code elimination to satisfy YourKit'...Iulian Dragos2010-01-241-3/+15
| | | | | | | Fixed dead code elimination to satisfy YourKit's instrumentation: a drop for a newly initialized object is always added after the constructor call, instead of immediately after a DUP
* Removing a stray paren to unbreak build.Paul Phillips2010-01-241-1/+1
|
* renamed notCompiles ==> canRedefine.Martin Odersky2010-01-243-19/+25
|
* Some minor polishing to the previous repl compl...Paul Phillips2010-01-245-52/+133
| | | | | | Some minor polishing to the previous repl completion patch, plus a few new features and improvements.
* Another big REPL patch.Paul Phillips2010-01-2314-505/+753
| | | | | | | | | | | | a proper commit message, I will just say it adds a couple of pretty frabjous features, in addition to cleaning up a whole bunch of questionable code. * Tab-completion now chains through intermediate results on fields and 0-arg methods * You can now define custom Completors which define their own contents. Details and demos to come in a wiki document about the repl.
* Closes 2926. Review by milesabin.Martin Odersky2010-01-233-9/+24
|
* fix several issues in .net backend / type parsing.Lukas Rytz2010-01-225-52/+121
|
* Second attempt to fix #2926.Martin Odersky2010-01-222-14/+5
|
* It's a big REPL patch. And it contains:Paul Phillips2010-01-217-147/+309
| | | | | | | | | | | | | | | | | | | | * Eliminated a bug which was causing all repl lines to be parsed twice * Removed reference to JLine from InterpreterLoop which was causing someone trouble in eclipse * Enriched the repl compile/reflect mechanism to allow retrieving the value as well as the String describing it * Utilized said enrichment to write an eval[T] method which is exposed in the repl in :power mode * Added ability to turn off string unwrapping in repl: settings.unwrapStrings = false * Created interface presently called Completion.Special which lets objects define their own contents * As minor demonstration of above, in :power mode variable "repl" implements Special and completes with all repl identifiers * As more interesting demonstration of above, try a repl session like... import scala.tools.nsc.interpreter.Completion.Special import scala.tools.nsc.io.Process val connections = new Special { def tabCompletions() = Process("netstat -p tcp").toList drop 2 map (_ split "\\s+" apply 4) } connections.<tab> Review by community!
* Moved test case for just-reverted patch to pend...Paul Phillips2010-01-211-0/+0
| | | | | Moved test case for just-reverted patch to pending. No review.
* Fix for #2867 undone, review by extempore.Martin Odersky2010-01-211-0/+8
|
* Attempt to fix #2926 (companion object of case ...Martin Odersky2010-01-202-1/+13
| | | | | Attempt to fix #2926 (companion object of case class problem in Eclipse)
* Closes #2653, #2652, #2556.Hubert Plociniczak2010-01-203-3/+79
|
* [scaladoc] Default values of parameters are doc...Gilles Dubochet2010-01-204-8/+80
| | | | | | | | [scaladoc] Default values of parameters are documented. Tags "@author", "@see", "@since", "@version", and "@deprecated" are displayed in documentation. Contributed by Pedro Furlanetto, checked by dubochet, no review.
* fixed bugs in .NET bytecode generation (branchi...Lukas Rytz2010-01-203-50/+150
| | | | | | | fixed bugs in .NET bytecode generation (branching out of try / catch / finally blocks is not allowed). predef.dll now almost passes PEVerify. no review
* Renamed new bin directory to "tools" to avoid c...Miles Sabin2010-01-202-1/+1
| | | | | | Renamed new bin directory to "tools" to avoid conflict with Eclipse incremental build output directory.
* Removed static state from global object ClassPa...Paul Phillips2010-01-207-54/+59
| | | | | | | | Removed static state from global object ClassPath object, and some minor repositioning while in there. Closes #2928, but the intentions behind -optimise being intertwined with ClassPath could really use some source comments. Review by rytz.
* Bringing README up to date and filling in some ...Paul Phillips2010-01-201-18/+25
| | | | | | Bringing README up to date and filling in some of the info gaps. Review by cunei.
* No longer are there more IDE-specific junk file...Paul Phillips2010-01-209-0/+0
| | | | | | | | | | No longer are there more IDE-specific junk files in the root directory of the official scala repository than actual scala files and directories put together. It's a truly awful first impression to give potential developers so I'm interpreting the non-response regarding the need for them as quiet encouragement to put them in src/intellij. Review by ilyas.
* Took a slightly different tack on parsing the s...Paul Phillips2010-01-202-7/+11
| | | | | Took a slightly different tack on parsing the svn version. No review.
* Removed some debugging echoes I let slip through.Paul Phillips2010-01-201-4/+0
|