summaryrefslogtreecommitdiff
path: root/src/intellij/repl.iml.SAMPLE
Commit message (Collapse)AuthorAgeFilesLines
* Update IntelliJ build for use with sbtLukas Rytz2016-03-211-4/+5
|
* SI-8502 create PackageClass instead of Class symbol stubs for pkgsLukas Rytz2015-07-201-0/+1
| | | | | | | | | | | | | | | | | | | | https://github.com/scala/scala/pull/4111 creates a stub type symbol for missing packages, deferring (or avoiding) a crash if a package is missing. The symbol created was a ClassSymbol, which could lead to an assertion failure in flattten: case TypeRef(pre, sym, args) if isFlattenablePrefix(pre) => assert(args.isEmpty && sym.enclosingTopLevelClass != NoSymbol, sym.ownerChain) `pre` is the stub ClassSymbol, so `isFlattenablePrefix` is true (but it should be false). The assertion then fails because the enclosing class of a top-level class defined in a missing package is NoSymbol. This failed only with GenBCode, which traverses more of the symbol graph while building ClassBTypes: it looks collects the nested classes of `Outer` into a `NestedInfo`.
* intellij project files for ASM removalLukas Rytz2015-05-111-1/+1
| | | | ij fix
* Update intellij project files for IDEA 14.1 and latest Scala pluginLukas Rytz2015-05-011-14/+4
| | | | | Removes the src/intellij-14 folder and moves everything back to src/intellij.
* IntelliJ project filesLukas Rytz2014-05-021-1/+3
| | | | Fixes compilation within IDEA. Allows compiling and running JUnit tests directly withing the IDE.
* Scrubbing up the IntelliJ ConfigJason Zaugg2013-07-291-1/+1
| | | | | | | | | | | | - Add recently sprouted modules (xml and parser-combinators) - Replace some of the documentation with a setup script - Update Ant build to copy Maven sourced JARs to ./build/deps. These are included in the IntelliJ classpath. - Define the library for Ant at the project level based on ./lib, rather than asking the user to define global library. - Disable Type Aware Highlighting by default. IntelliJ now can build everything within the IDE with CTRL-F9.
* An IntelliJ Module for the recently modularized REPL.Jason Zaugg2013-03-251-0/+25