summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authornielsen <nielsen@epfl.ch>2009-02-09 10:42:40 +0000
committernielsen <nielsen@epfl.ch>2009-02-09 10:42:40 +0000
commit6fde5968a302b360d861487a1f749def504e91f3 (patch)
treead12a9fad159415a2b426bd954d5a888f08b3fdf /docs
parent18b36de92bac9743474897cedc3602fc6ec9fb38 (diff)
downloadscala-6fde5968a302b360d861487a1f749def504e91f3.tar.gz
scala-6fde5968a302b360d861487a1f749def504e91f3.tar.bz2
scala-6fde5968a302b360d861487a1f749def504e91f3.zip
Remove type annotations as part of SIP 00002 an...
Remove type annotations as part of SIP 00002 and removed function from Global that is not used any more
Diffstat (limited to 'docs')
-rw-r--r--docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala b/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala
index 979437c8c2..3068f47635 100644
--- a/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala
+++ b/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala
@@ -21,8 +21,8 @@ extends Global(settings, reporter) {
*/
override protected def computeInternalPhases() : Unit = {
phasesSet += syntaxAnalyzer
- phasesSet += (analyzer.namerFactory: SubComponent) // note: types are there because otherwise
- phasesSet += (analyzer.typerFactory: SubComponent) // consistency check after refchecks would fail.
+ phasesSet += analyzer.namerFactory: SubComponent
+ phasesSet += analyzer.typerFactory: SubComponent
phasesSet += superAccessors // add super accessors
phasesSet += pickler // serialize symbol tables
phasesSet += refchecks // perform reference and override checking, translate nested objects