summaryrefslogtreecommitdiff
path: root/src/eclipse/repl
Commit message (Collapse)AuthorAgeFilesLines
* SI-9522 release key reference when deleting from OpenHashMapPerformant Data LLC2016-05-241-1/+1
| | | | | | | | | This sets the key field in the hash table entry to its default value when an entry is deleted, so as not to unexpectedly retain an object reference, leading to a memory leak. Also includes incidental changes to the slot location algorithm that reduce the number of deleted entries.
* Automate Eclipse settings and update project files: (#5091)Iulian Dragos2016-04-201-2/+3
| | | | | | | | - remove `M2_REPO`. All dependencies are picked up from `build/deps` - add script to update an existing workspace directory with the required path variables - add the default Scala library to several projects for better out-of-the-box experience. This means that changes in the scale-library project may not be visible in the other projects, but makes it way easier to get a working config. If you really need that, you probably know what you’re doing anyway.
* SI-9508 fix classpaths in Eclipse configurationPerformant Data LLC2015-10-121-8/+8
|
* SI-9506 suppress Scala IDE-generated files in the Eclipse project dirsPerformant Data LLC2015-10-051-0/+2
|
* Update Eclipse classpath entriesTim Vergenz2015-07-041-1/+1
|
* repl depends on jline-2.12Adriaan Moors2014-07-181-2/+2
|
* Eclipse project: repl depends on compiler/lib projectsAdriaan Moors2014-07-171-8/+8
|
* Update of Eclipse project filesSimon Schaefer2013-09-221-0/+1
| | | | | | | - Update of project dependencies - Deletion of scala-xml project - Deletion of scala-parser-combinators project - Update of .gitignore to match nested .cache files
* Updated eclipse project files.Adriaan Moors2013-07-052-40/+39
| | | | | | | | Set everything up so that soon-to-be independent modules are compiled with the Eclipse plugin's compiler & library (2.11.0-M3 currently). Most projects still compile with 2.11.0-M3, but partest will need a nightly build of 2.11.
* update eclipse projects (partest, repl & scaladoc)Adriaan Moors2013-03-122-0/+46
Since we've removed scala.annotations.serializable in 2.11, you'll need to following bandaid to use eclipse on master. This is the easiest fix, but certainly not recommended in general. ``` --- i/src/eclipse/scala-library/.classpath +++ w/src/eclipse/scala-library/.classpath @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="library"/> - <classpathentry kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/> + <classpathentry exported="true" kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/> ``` This corresponds to checking the export check box for the scala library jar in the library's build path.