- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Crash only in eclipse scala builder on Seq[Class[_]]
Wed, 2009-01-07, 21:27
val numberTypes: Seq[Class[_]] = Seq(classOf[java.lang.Byte], classOf[java.lang.Short] ... )
seems to crash the eclipse plugin, including the builder (though not on clean/build) with a stack overflow, even when I increase the stack size to a few Mb, with or without the type annotation on the val.
The command line scalac seems to be fine (although maybe it has a common denominator with clean build).
I solved the problem by discovering a new syntax: Seq(classOf[java.lang.Byte]: Class[_], classOf... -- putting a type annotation on each element. I knew about :_* but I thought it was a specialized syntax.
This is plugin 2.7.2final.
Has this been fixed, or is it a known bug? If not could I ask you a favor to file it for me since when you reply I won't be around Internet access. When was/will the fix be released?
Thanks a ton!
Thu, 2009-01-08, 01:17
#2
Re: Crash only in eclipse scala builder on Seq[Class[_]]
Sounds like a resident compiler bug. If you want to test it from the command line, use scalac -Yresident and recompile the file twice from the resident shell.
On Thu, Jan 8, 2009 at 4:27 AM, Naftoli Gugenheim <naftoligug@gmail.com> wrote:
On Thu, Jan 8, 2009 at 4:27 AM, Naftoli Gugenheim <naftoligug@gmail.com> wrote:
val numberTypes: Seq[Class[_]] = Seq(classOf[java.lang.Byte], classOf[java.lang.Short] ... ) seems to crash the eclipse plugin, including the builder (though not on clean/build) with a stack overflow, even when I increase the stack size to a few Mb, with or without the type annotation on the val. The command line scalac seems to be fine (although maybe it has a common denominator with clean build). I solved the problem by discovering a new syntax: Seq(classOf[java.lang.Byte]: Class[_], classOf... -- putting a type annotation on each element. I knew about :_* but I thought it was a specialized syntax. This is plugin 2.7.2final. Has this been fixed, or is it a known bug? If not could I ask you a favor to file it for me since when you reply I won't be around Internet access. When was/will the fix be released? Thanks a ton!
On Wed, Jan 7, 2009 at 8:27 PM, Naftoli Gugenheim wrote:
> val numberTypes: Seq[Class[_]] = Seq(classOf[java.lang.Byte],
> classOf[java.lang.Short] ... )
> seems to crash the eclipse plugin, including the builder (though not on
> clean/build) with a stack overflow, even when I increase the stack size to a
> few Mb, with or without the type annotation on the val.
I haven't been able to guess enough of the context of this to be able
to reproduce the problem ... if you can put together a small, complete
and reproducible test case that'd be really helpful.
> Has this been fixed, or is it a known bug? If not could I ask you a favor to
> file it for me since when you reply I won't be around Internet access. When
> was/will the fix be released?
2.7.3.RC1 is available now and RC2 is imminent ... please see if
you're able to reproduce the problem on either or both and open a
ticket if you can.
Thanks ...
Cheers,
Miles