This page is no longer maintained — Please continue to the home page at www.scala-lang.org

[Eclipse Scala plugin] Compiler bug?

4 replies
Silvio Bierman
Joined: 2009-02-16,
User offline. Last seen 1 year 16 weeks ago.

It seems that the compiler generates lots of new warnings and even some
errors on Scala code that compiled without warnings until now.
Method parameter names that are the same as other identifiers in the scope
of the class containing the method seem to be causing a lot of these.

I have a piece of code like

val style = new StyleContainer
{
def apply(style : String) { /*... */ }
}

which may be a bit crummy but used to compile fine before. The compiler now
complains that "recursive value style needs type".

When I compile the code using my Ant Scala build task there is no complaint
but the compiler in Eclipse insists I rename the parameter to apply.

Is this intended behaviour or is it a compiler bug?

Gr. Silvio

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: [Eclipse Scala plugin] Compiler bug?

On Thu, Apr 15, 2010 at 03:34:45PM -0700, Silvio Bierman wrote:
> It seems that the compiler generates lots of new warnings and even
> some errors on Scala code that compiled without warnings until now.

Are they warnings about shadowing? It has come up a good half a dozen
times so far today that apparently some warnings options which were not
intended for general use were on for a lot of people in eclipse. I
removed all that code from trunk so it won't be an issue in future
revisions. In the meantime you can unclick options like "strict
warnings" which I bet are clicked.

Silvio Bierman
Joined: 2009-02-16,
User offline. Last seen 1 year 16 weeks ago.
Re: [Eclipse Scala plugin] Compiler bug?

Hello Paul,

I just checked, Strict warnings is not checked...

I do get some actual errors here and there (about 40 warnings and 3/4 errors
on ~200 source files).

Gr. Silvio

ijuma
Joined: 2008-08-20,
User offline. Last seen 22 weeks 2 days ago.
Re: [Eclipse Scala plugin] Compiler bug?

On Fri, Apr 16, 2010 at 7:27 AM, Silvio Bierman
wrote:
> I do get some actual errors here and there (about 40 warnings and 3/4 errors
> on ~200 source files).

Are these errors shown in the "Problems View", in the editor or both?

Best,
Ismael

Silvio Bierman
Joined: 2009-02-16,
User offline. Last seen 1 year 16 weeks ago.
Re: [Eclipse Scala plugin] Compiler bug?

Ismael Juma wrote:
>
>
> Are these errors shown in the "Problems View", in the editor or both?
>
>

Both. Initially I also thought it was a reappearance of the old editor
warnings bug but this one turns up in the problems view as well. Therefore I
expected it to come up via the Ant build also (I use the same distribution
version as the plugin version) but that build went without errors.

Gr. Silvio

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland