alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (ThePlugin.scala)

This example Scala source code file (ThePlugin.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

declares, global, list, list, phase, phase, plugin, plugin, plugincomponent, thephase, thephase, theplugin

The Scala ThePlugin.scala source code

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 = "beforeparser"
  val description = "Declares one plugin that wants to be before the parser phase"
  val components = List[PluginComponent](thePhase)
  
  private object thePhase extends PluginComponent {
    val global = ThePlugin.this.global

    val runsAfter = List[String]()
    override val runsBefore = List[String]("parser")

    val phaseName = ThePlugin.this.name

    def newPhase(prev: Phase) = new ThePhase(prev)    
  }
  
  private class ThePhase(prev: Phase) extends Phase(prev) {
    def name = ThePlugin.this.name
    def run {}
  }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala ThePlugin.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.