summaryrefslogtreecommitdiff
path: root/test/files/run/javap.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-02-07 06:52:02 +0000
committerPaul Phillips <paulp@improving.org>2011-02-07 06:52:02 +0000
commit5c18620fa475d32de62472de55a6bcec3da1b515 (patch)
tree8d9363ddf785f94d610892684a5d44bf3d6986a3 /test/files/run/javap.scala
parent1065c911a1b896132b54d2573d80152b5fe7404f (diff)
downloadscala-5c18620fa475d32de62472de55a6bcec3da1b515.tar.gz
scala-5c18620fa475d32de62472de55a6bcec3da1b515.tar.bz2
scala-5c18620fa475d32de62472de55a6bcec3da1b515.zip
Added all the javap command line options to :ja...
Added all the javap command line options to :javap. No review.
Diffstat (limited to 'test/files/run/javap.scala')
-rw-r--r--test/files/run/javap.scala24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/files/run/javap.scala b/test/files/run/javap.scala
new file mode 100644
index 0000000000..241a83fa6f
--- /dev/null
+++ b/test/files/run/javap.scala
@@ -0,0 +1,24 @@
+import 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")
+ }
+}