From 14a631a5fec42d04d0723355a0b93e482b5e4662 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 8 May 2009 16:33:15 +0000 Subject: massive new collections checkin. --- .../lib/plugins.jar.desired.sha1 | 1 + .../plugin-cyclic-dependency/misc/build.sh | 14 ++++++++ .../misc/scalac-plugin.xml | 6 ++++ .../plugin-cyclic-dependency/src/ThePlugin.scala | 41 ++++++++++++++++++++++ .../plugin-cyclic-dependency/testsource.scala | 4 +++ 5 files changed, 66 insertions(+) create mode 100644 test/disabled/plugin-cyclic-dependency/lib/plugins.jar.desired.sha1 create mode 100755 test/disabled/plugin-cyclic-dependency/misc/build.sh create mode 100644 test/disabled/plugin-cyclic-dependency/misc/scalac-plugin.xml create mode 100644 test/disabled/plugin-cyclic-dependency/src/ThePlugin.scala create mode 100644 test/disabled/plugin-cyclic-dependency/testsource.scala (limited to 'test/disabled/plugin-cyclic-dependency') diff --git a/test/disabled/plugin-cyclic-dependency/lib/plugins.jar.desired.sha1 b/test/disabled/plugin-cyclic-dependency/lib/plugins.jar.desired.sha1 new file mode 100644 index 0000000000..7d62792253 --- /dev/null +++ b/test/disabled/plugin-cyclic-dependency/lib/plugins.jar.desired.sha1 @@ -0,0 +1 @@ +adfc1223549e592354b56821ee9ed808d391a859 ?plugins.jar diff --git a/test/disabled/plugin-cyclic-dependency/misc/build.sh b/test/disabled/plugin-cyclic-dependency/misc/build.sh new file mode 100755 index 0000000000..8899009d7f --- /dev/null +++ b/test/disabled/plugin-cyclic-dependency/misc/build.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +SCALAC="../../../../build/pack/bin/scalac -deprecation -cp ../../../../build/quick/classes/compiler/" + +BASE=`pwd` + +if [[ -d "${BASE}/src" ]] ; then + + mkdir -p build + ${SCALAC} -d build src/*.scala + jar cf lib/plugins.jar -C misc/ scalac-plugin.xml -C build . + rm -rf build +fi + diff --git a/test/disabled/plugin-cyclic-dependency/misc/scalac-plugin.xml b/test/disabled/plugin-cyclic-dependency/misc/scalac-plugin.xml new file mode 100644 index 0000000000..58fff40950 --- /dev/null +++ b/test/disabled/plugin-cyclic-dependency/misc/scalac-plugin.xml @@ -0,0 +1,6 @@ + + + beforeparser + scala.test.plugins.ThePlugin + + diff --git a/test/disabled/plugin-cyclic-dependency/src/ThePlugin.scala b/test/disabled/plugin-cyclic-dependency/src/ThePlugin.scala new file mode 100644 index 0000000000..1dfc15cb28 --- /dev/null +++ b/test/disabled/plugin-cyclic-dependency/src/ThePlugin.scala @@ -0,0 +1,41 @@ +package scala.test.plugins + +import scala.tools.nsc +import nsc.Global +import nsc.Phase +import nsc.plugins.Plugin +import nsc.plugins.PluginComponent + +class ThePlugin(val global: Global) extends Plugin { + import global._ + + val name = "cyclicdependency" + val description = "Declares two phases that have a cyclic dependency" + val components = List[PluginComponent](thePhase1,thePhase2) + + private object thePhase1 extends PluginComponent { + val global = ThePlugin.this.global + + val runsAfter = List[String]("tailcalls","cyclicdependency2") + + val phaseName = ThePlugin.this.name + "1" + + def newPhase(prev: Phase) = new ThePhase(prev) + } + + private object thePhase2 extends PluginComponent { + val global = ThePlugin.this.global + + val runsAfter = List[String]("dce","cyclicdependency1") + + val phaseName = ThePlugin.this.name + "2" + + def newPhase(prev: Phase) = new ThePhase(prev) + } + + private class ThePhase(prev: Phase) extends Phase(prev) { + def name = ThePlugin.this.name + def run {} + } +} + diff --git a/test/disabled/plugin-cyclic-dependency/testsource.scala b/test/disabled/plugin-cyclic-dependency/testsource.scala new file mode 100644 index 0000000000..f1513ec9a0 --- /dev/null +++ b/test/disabled/plugin-cyclic-dependency/testsource.scala @@ -0,0 +1,4 @@ +object Test extends Application { + println("cyclicdependency") +} + -- cgit v1.2.3