|
Scala example source code file (javap.scala)
The Scala javap.scala source codeimport scala.tools.nsc.interpreter._ object Test { def run(args: String) = { println("Arguments: '" + args + "'") ILoop.run(""" |class Bippy { | private def privateMethod = 5 | def f[T <: List[_]](x: T): T = x |} | |:javap %s Bippy """.stripMargin.format(args)).lines map (_.trim) filter { line => (line startsWith "private") || (line startsWith "public") } foreach println } def main(args: Array[String]): Unit = { run("") run("-v") run("-s") run("-private") } } Other Scala examples (source code examples)Here is a short list of links related to this Scala javap.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.