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

Scala example source code file (t3895b.scala)

This example Scala source code file (t3895b.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

array, array, compilercommand, compilercommand, consolereporter, dryrun, global, settings, settings, test, test

The Scala t3895b.scala source code

class DryRun {
  import scala.tools.nsc.{Global, Settings, CompilerCommand}
  import scala.tools.nsc.reporters.ConsoleReporter

  val settings = new Settings()
  settings.classpath.value = System.getProperty("java.class.path")
  val command = new CompilerCommand(List(), settings)
  val reporter = new ConsoleReporter(settings, scala.Console.in, new java.io.PrintWriter(new java.io.PrintStream(scala.Console.out)))
  object compiler extends Global(command.settings, reporter) {
   object test1
   lazy val test2 = 1
   object test3
  }
  def test {
    compiler.test1
    compiler.test2
    compiler.test3
    val run = new compiler.Run
    run compile command.files
  }
}

object Test {
    def main(args: Array[String]) {
        new DryRun().test
    }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala t3895b.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.