summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
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