aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/config/PathResolver.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix #2186: Synchronize classpath handling with Scala 2.12Guillaume Martres2017-04-111-8/+13
| | | | | | | | | | | | | | | | | | | | | | | | This commit is a very crude port of the classpath handling as it exists in the 2.12.x branch of scalac (hash: 232d95a198c94da0c6c8393624e83e9b9ac84e81), this replaces the existing Classpath code that was adapted from scalac years ago. This code was written by Grzegorz Kossakowski, MichaƂ Pociecha, Lukas Rytz, Jason Zaugg and other scalac contributors, many thanks to them! For more information on this implementation, see the description of the PR that originally added it to scalac: https://github.com/scala/scala/pull/4060 Changes made to the copied code to get it to compile with dotty: - Rename scala.tools.nsc.util.ClassPath to dotty.tools.io.ClassPath - Rename scala.tools.nsc.classpath.* to dotty.tools.dotc.classpath.* - Replace "private[nsc]" by "private[dotty]" - Changed `isClass` methods in FileUtils to skip Scala 2.11 implementation classes (needed until we stop being retro-compatible with Scala 2.11) I also copied PlainFile.scala from scalac to get access to `PlainNioFile`.
* Make non-existent compiler options emit warnings instead of failingFelix Mulder2017-02-201-1/+1
|
* Remove hardcoded classpath reorderingGuillaume Martres2017-01-271-8/+1
| | | | | | If something needs to be fixed, fix it at the source. This prevented dotty-compiler-bootstrapped from using the dotty-library-bootstrapped clases instead of the dotty-library jar
* Drop "Dotty deviation" messages that are no longer applicable.Martin Odersky2016-12-121-1/+1
|
* Drop explicit types for local implicit valsMartin Odersky2016-12-121-1/+1
| | | | | Drop explicit types for local implicit vals of type Context and Position. Exercises the functionality and shortens the code.
* Move compiler and compiler tests to compiler dirFelix Mulder2016-11-221-0/+281