summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-05-01 12:55:21 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-05-01 12:55:21 +0000
commit289869e273719681fad4321ddee6f301427db698 (patch)
tree7e29dffddc85fa0e8f4c04af633abe6ad5a4de9c /src
parente5a1fb508d855a0b6891b40095f75f92703987a1 (diff)
downloadscala-289869e273719681fad4321ddee6f301427db698.tar.gz
scala-289869e273719681fad4321ddee6f301427db698.tar.bz2
scala-289869e273719681fad4321ddee6f301427db698.zip
Fix for #769
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/Interpreter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Interpreter.scala b/src/compiler/scala/tools/nsc/Interpreter.scala
index 7ae7bc6442..f0a3750aac 100644
--- a/src/compiler/scala/tools/nsc/Interpreter.scala
+++ b/src/compiler/scala/tools/nsc/Interpreter.scala
@@ -764,7 +764,7 @@ class Interpreter(val settings: Settings, out: PrintWriter) {
/** Code to access a variable with the specified name */
def fullPath(vname: String): String =
- objectName + accessPath + "." + vname
+ objectName + accessPath + ".`" + vname + "`"
/** Code to access a variable with the specified name */
def fullPath(vname: Name): String = fullPath(vname.toString)