summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/runtime/AbstractFile.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/reflect/runtime/AbstractFile.scala')
-rw-r--r--src/compiler/scala/reflect/runtime/AbstractFile.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compiler/scala/reflect/runtime/AbstractFile.scala b/src/compiler/scala/reflect/runtime/AbstractFile.scala
new file mode 100644
index 0000000000..04f18bcd3b
--- /dev/null
+++ b/src/compiler/scala/reflect/runtime/AbstractFile.scala
@@ -0,0 +1,5 @@
+package scala.reflect.runtime
+
+class AbstractFile(val jfile: java.io.File) {
+ def path: String = jfile.getPath()
+} \ No newline at end of file