Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Bug in AJDT

I have never seen that bug - please raise it.  For the simple case you
have attached here I get an error reported correctly on the command
line:

F:\aspectj165-dev>ajc Bar.java
F:\aspectj165-dev\Bar.java:3 [error] Syntax error, insert ";" to
complete member declaration
private static final String junk = "...."
                                   ^^^
1 error

I wonder why it doesn't get surfaced in ajdt.

Andy

2009/5/6  <kmerriman+aspects@xxxxxxxxx>:
> I have an aspect that does not show any build errors in the editor or
> problems list, but clearly doesn't build.  It is a much larger problem
> when this is just one line of the aspect, rather then all of it.
>
> public aspect Bar {
>
>   private static final String junk = "...."
> }
>
> With the missing semicolon, it doesn't build anything else in the file
> (and doesn't report an error).  Eclipse 3.4.2, AJDT Version:
> 1.6.3.20090122141228, AspectJ version: 1.6.4.20090106083800.
>
> Is this a new bug or a known bug?  (I didn't see anything about it in
> the bug tracker)
>
> Kendall
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>


Back to the top