summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornielsen <nielsen@epfl.ch>2009-02-05 20:44:14 +0000
committernielsen <nielsen@epfl.ch>2009-02-05 20:44:14 +0000
commitdd42e06b03ce279a0e1655ad7c4a6e943f379e81 (patch)
tree507cb914de0d82773966f99aae9c3bd87906116e
parent0ecacced0347e4e3b83989a274b9de53868a3a57 (diff)
downloadscala-dd42e06b03ce279a0e1655ad7c4a6e943f379e81.tar.gz
scala-dd42e06b03ce279a0e1655ad7c4a6e943f379e81.tar.bz2
scala-dd42e06b03ce279a0e1655ad7c4a6e943f379e81.zip
The changes made to the scaladoc tool also need...
The changes made to the scaladoc tool also need to be reflected in the scaladoc ant task
-rw-r--r--src/compiler/scala/tools/ant/Scaladoc.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compiler/scala/tools/ant/Scaladoc.scala b/src/compiler/scala/tools/ant/Scaladoc.scala
index bb3a4f7533..389668d4e9 100644
--- a/src/compiler/scala/tools/ant/Scaladoc.scala
+++ b/src/compiler/scala/tools/ant/Scaladoc.scala
@@ -568,6 +568,11 @@ class Scaladoc extends MatchingTask {
// Compiles the actual code
val compiler = new Global(commandSettings, reporter) {
+ override protected def computeInternalPhases() : Unit = {
+ phasesSet += syntaxAnalyzer
+ phasesSet += analyzer.namerFactory
+ phasesSet += analyzer.typerFactory
+ }
override def onlyPresentation = true
}
try {