Skip to content

Commit

Permalink
Merge pull request scala#5614 from dotty-staging/add-missing-flag
Browse files Browse the repository at this point in the history
Add missing -Yretain-trees in ConsumeTasty
  • Loading branch information
nicolasstucki authored Dec 15, 2018
2 parents dab02ed + a0fa88c commit 0caf45e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object ConsumeTasty {

val currentClasspath = QuoteDriver.currentClasspath
import java.io.File.{ pathSeparator => sep }
val args = "-from-tasty" +: "-classpath" +: s"$classpath$sep$currentClasspath" +: classes
val args = "-from-tasty" :: "-Yretain-trees" :: "-classpath" :: s"$classpath$sep$currentClasspath" :: classes
(new Consume).process(args.toArray)
}
}

0 comments on commit 0caf45e

Please sign in to comment.