Skip to content

Commit

Permalink
Removed -Ymacro-no-expand.
Browse files Browse the repository at this point in the history
Don't know where/how to fix it and it says it's a temporary
option.
  • Loading branch information
paulp committed Feb 2, 2013
1 parent e3d9a08 commit 71fb0b8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
1 change: 0 additions & 1 deletion src/compiler/scala/tools/nsc/settings/ScalaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ trait ScalaSettings extends AbsScalaSettings
= ChoiceSetting ("-Ystruct-dispatch", "policy", "structural method dispatch policy", List("no-cache", "mono-cache", "poly-cache", "invoke-dynamic"), "poly-cache")
val Yrangepos = BooleanSetting ("-Yrangepos", "Use range positions for syntax trees.")
val Yreifycopypaste = BooleanSetting ("-Yreify-copypaste", "Dump the reified trees in copypasteable representation.")
val Ymacronoexpand = BooleanSetting ("-Ymacro-no-expand", "Don't expand macros. Might be useful for scaladoc and presentation compiler, but will crash anything which uses macros and gets past typer.")
val Yreplsync = BooleanSetting ("-Yrepl-sync", "Do not use asynchronous code for repl startup")
val Yreploutdir = StringSetting ("-Yrepl-outdir", "path", "Write repl-generated classfiles to given output directory (use \"\" to generate a temporary dir)" , "")
val Ynotnull = BooleanSetting ("-Ynotnull", "Enable (experimental and incomplete) scala.NotNull.")
Expand Down
24 changes: 0 additions & 24 deletions test/scaladoc/run/SI-6812.scala

This file was deleted.

1 comment on commit 71fb0b8

@harrah
Copy link
Contributor

@harrah harrah commented on 71fb0b8 Mar 6, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is necessary for generating scaladoc across multiple projects with macros: https://issues.scala-lang.org/browse/SI-6812.

Please sign in to comment.