In build 629 I noticed that creating the following class would not result in 
any syntax error highlighting.  It says green for good to go, but will not 
compile because it has no body.

public class foo
{
  public void method()
}

this also succeeds but fails to compile because abstract methods cannot have 
bodies:

public abstract class foo
{
  public abstract void method()
  {
  }
}

interfaces also pass but do not compile if they are missing the end of 
declaration semicolon:

public interface foo
{
  void method()
}

Would it be an easy thing to add these types of syntax error highlighting 
for methods?

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.

_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features

Reply via email to