summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2010-04-13 10:31:39 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2010-04-13 10:31:39 +0000
commit5055ee1d62cd486e50dc13ca9275be91ebb78cc5 (patch)
tree530a5c95bdd0188e72686c88f29b5fe672ec47fd /src/compiler
parent628b2edf7363265748e0d345298d6e3663d8133b (diff)
downloadscala-5055ee1d62cd486e50dc13ca9275be91ebb78cc5.tar.gz
scala-5055ee1d62cd486e50dc13ca9275be91ebb78cc5.tar.bz2
scala-5055ee1d62cd486e50dc13ca9275be91ebb78cc5.zip
fixed most of stability, reviewed by iuli, so n...
fixed most of stability, reviewed by iuli, so no review. continuations.jar is still failing stability, i'll look at that.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/transform/SpecializeTypes.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/SpecializeTypes.scala b/src/compiler/scala/tools/nsc/transform/SpecializeTypes.scala
index ec0e64006c..5f18bb84ba 100644
--- a/src/compiler/scala/tools/nsc/transform/SpecializeTypes.scala
+++ b/src/compiler/scala/tools/nsc/transform/SpecializeTypes.scala
@@ -82,7 +82,7 @@ abstract class SpecializeTypes extends InfoTransform with TypingTransformers {
}
/** For a given class and concrete type arguments, give its specialized class */
- val specializedClass: mutable.Map[(Symbol, TypeEnv), Symbol] = new mutable.HashMap
+ val specializedClass: mutable.Map[(Symbol, TypeEnv), Symbol] = new mutable.LinkedHashMap
/** Returns the generic class that was specialized to 'cls', or
* 'cls' itself if cls is not a specialized subclass.