summaryrefslogtreecommitdiff
path: root/test/files/presentation/doc/doc.scala
diff options
context:
space:
mode:
authorEugene Vigdorchik <eugene.vigdorchik@gmail.com>2013-02-15 13:07:47 +0400
committerEugene Vigdorchik <eugene.vigdorchik@gmail.com>2013-02-15 13:07:47 +0400
commitfd68fe6ee974e4408aebe040e1a08a7c62fa872f (patch)
tree209aa0d93fc953edbd89196194c05d5203466893 /test/files/presentation/doc/doc.scala
parent466fc670a38836dfb81d75f72d46ddcaa12bc3bb (diff)
downloadscala-fd68fe6ee974e4408aebe040e1a08a7c62fa872f.tar.gz
scala-fd68fe6ee974e4408aebe040e1a08a7c62fa872f.tar.bz2
scala-fd68fe6ee974e4408aebe040e1a08a7c62fa872f.zip
SI-7134: don't require doc.Settings in base api of scaladoc.
Diffstat (limited to 'test/files/presentation/doc/doc.scala')
-rwxr-xr-xtest/files/presentation/doc/doc.scala14
1 files changed, 6 insertions, 8 deletions
diff --git a/test/files/presentation/doc/doc.scala b/test/files/presentation/doc/doc.scala
index 475d92b861..5855f488b8 100755
--- a/test/files/presentation/doc/doc.scala
+++ b/test/files/presentation/doc/doc.scala
@@ -7,8 +7,6 @@ import scala.tools.nsc.util._
import scala.tools.nsc.io._
object Test extends InteractiveTest {
- override val settings: doc.Settings = docSettings
-
val tags = Seq(
"@example `\"abb\".permutations = Iterator(abb, bab, bba)`",
"@version 1.0, 09/07/2012",
@@ -29,16 +27,16 @@ object Test extends InteractiveTest {
|class User(c: %sCommented)""".stripMargin.format(comment, tags take nTags mkString "\n", caret)
override lazy val compiler = {
- new {
- override val settings = {
- prepareSettings(Test.this.settings)
- Test.this.settings
- }
- } with Global(settings, compilerReporter) with MemberLookupBase with CommentFactoryBase {
+ prepareSettings(settings)
+ new Global(settings, compilerReporter) with MemberLookupBase with CommentFactoryBase {
val global: this.type = this
def chooseLink(links: List[LinkTo]): LinkTo = links.head
def internalLink(sym: Symbol, site: Symbol) = None
def toString(link: LinkTo) = link.toString
+ def warnNoLink = false
+ def findExternalLink(sym: Symbol, name: String) = None
+
+ override def forScaladoc = true
def getComment(sym: Symbol, source: SourceFile) = {
val docResponse = new Response[(String, String, Position)]