Skip to main content

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

Making a change and doing a build, I get the following in my log:

9:58:0 Preparing for build: planning to be an incremental build
9:58:0 Starting incremental compilation loop 1 of possibly 5
9:58:0 AJC: compiling source files
9:58:0 Timer event: 109ms: Time to first compiled message
9:58:0 AJC: compiled: C:\kmerrima\Java_Dev\Java\AspectBreak\src\Bar.aj
9:58:0 AspectJ reports build successful, build was: INCREMENTAL
9:58:0 AJDE Callback: finish. Was full build: false

Cleaning the project and doing a build, I get this:

9:59:52 Preparing for build: not going to be incremental because no
successful previous full build
9:59:52 AJC: compiling source files
9:59:52 Timer event: 110ms: Time to first compiled message
9:59:52 AJC: compiled: C:\kmerrima\Java_Dev\Java\AspectBreak\src\Bar.aj
9:59:52 AspectJ reports build successful, build was: FULL
9:59:52 AJDE Callback: finish. Was full build: true

Bug raised:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=275180

Kendall

On Wed, May 6, 2009 at 9:52 AM, Andrew Eisenberg <andrew@xxxxxxxxxxxx> wrote:
> It almost sounds like the compiler isn't running.
>
> Are you seeing this for full builds or incremental only?
>
> When you open the AJDT Event trace view (and select all filters) and make an
> edit/save in the file, what do you see?
>
> I have just tried this in my own workspace and I am seeing the expected
> syntax error in the editor and problems view.  So, I think something else is
> going on.
>
> On Wed, May 6, 2009 at 7:49 AM, <kmerriman+aspects@xxxxxxxxx> wrote:
>>
>> 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
>
>
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>
>


Back to the top