summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2004-03-17 13:09:54 +0000
committermihaylov <mihaylov@epfl.ch>2004-03-17 13:09:54 +0000
commit32fb9e583a1956075db7f342ce2de26d082d0191 (patch)
tree9fb23b59bc6fb4bedc3cb712688733eb46356605 /sources
parent8a4add814ed3fd96845aee4631cd1ca8893aa5ea (diff)
downloadscala-32fb9e583a1956075db7f342ce2de26d082d0191.tar.gz
scala-32fb9e583a1956075db7f342ce2de26d082d0191.tar.bz2
scala-32fb9e583a1956075db7f342ce2de26d082d0191.zip
- Switched off the symbol name decoding for the...
- Switched off the symbol name decoding for the MSIL backend
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/backend/Primitives.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/backend/Primitives.java b/sources/scalac/backend/Primitives.java
index 60a7e086d0..a4c084b118 100644
--- a/sources/scalac/backend/Primitives.java
+++ b/sources/scalac/backend/Primitives.java
@@ -319,7 +319,7 @@ public class Primitives {
this.definitions = global.definitions;
this.primitives = new HashMap();
this.jreNameWriter = new SymbolNameWriter().setClassSeparator('$');
- this.clrNameWriter = new SymbolNameWriter().setNameDecoding(true);
+ this.clrNameWriter = new SymbolNameWriter().setNameDecoding(false/*true*/);
this.RUNTIME = definitions.getModule(Names.scala_runtime_RunTime);
this.NEW_ZARRAY = getUniqueTerm(RUNTIME, ZARRAY_N);
this.NEW_BARRAY = getUniqueTerm(RUNTIME, BARRAY_N);