id int64 1 6.5k | bug_id int64 2.03k 426k | summary stringlengths 9 251 | description stringlengths 1 32.8k ⌀ | report_time stringlengths 19 19 | report_timestamp int64 1B 1.39B | status stringclasses 6
values | commit stringlengths 7 9 | commit_timestamp int64 1B 1.39B | files stringlengths 25 32.8k | project_name stringclasses 6
values |
|---|---|---|---|---|---|---|---|---|---|---|
501 | 57,436 | Bug 57436 Java 1.5 fails to run classes produced by ajc | Java 1.5 beta reports a ClassFormatError when running programs (e.g., spacewar) compiled by ajc 1.1.1 and the latest CVS head. Sun's Java 1.5 beta binary-compatibility docs say that some obfuscators violated the .class format specification, so those .class files will fail when run under 1.5. (The docs also say they are... | 2004-04-05 05:42:29 | 1,081,160,000 | resolved fixed | b0d32ca | 1,081,420,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java | AspectJ |
502 | 57,430 | Bug 57430 exception printing | Exceptions thrown from the compiler used to be printed once, with the submit-bug header. Now they are printed twice, without and with the header. True of CVS version. | 2004-04-05 04:58:49 | 1,081,160,000 | resolved fixed | e7ac54f | 1,081,330,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java | AspectJ |
503 | 55,341 | Bug 55341 error Type mismatch: cannot convert from java.lang.String to java.lang.String | When compiling a binary concrete aspect library (for later LTW) consisting of more than one aspect that performs an ITD on a target class not exposed to the weaver I get the following error: error Type mismatch: cannot convert from java.lang.String to java.lang.String The error does not oocur if a complete build & weav... | 2004-03-19 04:32:28 | 1,079,690,000 | resolved fixed | 0521e79 | 1,080,910,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/InterTypeMemberFinder.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BcweaverJarMaker.java tests/bugs/StringToString/HW.java tests/bugs/StringToString/X.java weaver/testsrc/org/aspectj/weaver/WeavingURLClassLoaderTest.java | AspectJ |
504 | 31,460 | Bug 31460 Weaving class loader | Hi! As discussed on the mailing list a few days ago I implemented a weaving class loader to enable bytecode based weaving at class loading time. The class loader is based on the URLClassLoader and can be used like any other URLClassLoader. In addition to that you can add aspects to the weaving loader. These aspects got... | 2003-02-10 10:35:35 | 1,044,890,000 | resolved fixed | 33d8ee9 | 1,080,910,000 | org.aspectj.ajdt.core/testdata/src1/LTWHelloWorld.java org.aspectj.ajdt.core/testdata/src1/ltw/LTWPackageTest.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BcweaverJarMaker.java util/src/org/aspectj/util/FileUtil.java weaver/src/org/aspectj/weaver/ExtensibleURLClassLoader.java weaver/src/o... | AspectJ |
505 | 53,012 | Bug 53012 declare precedence on a class should be a compile-time error | The compiler silently accepts ---- public class DeclarePrecedence { public static void main(String[] args) { System.out.println("hello"); } } aspect DP { declare precedence: DeclarePrecedence, DP; before() : staticinitialization(DeclarePrecedence) { System.out.println("ok"); } } ---- Since this is likely to be a mistak... | 2004-02-24 19:43:32 | 1,077,670,000 | resolved fixed | 0a01759 | 1,079,690,000 | tests/bugs/declarePrecedenceWithClasses/DeclarePrecedenceTestClass.java weaver/src/org/aspectj/weaver/patterns/DeclarePrecedence.java | AspectJ |
506 | 52,928 | Bug 52928 Private members introduced via an interface are visible to the class | If private members are introduced via an interface to classes, the introduced members are visible inside the classes themselves, although the visibility is supposed to be relative to the aspect. Here's a sample: public class Sample { public static void main(String[] args) { Sample s = new Sample(); s.aMethod(); } publi... | 2004-02-24 08:25:36 | 1,077,630,000 | resolved fixed | 5795b4a | 1,079,650,000 | tests/bugs/VisiblePrivateInterfaceITDs.java | AspectJ |
507 | 55,134 | Bug 55134 Incremental compilation does not delete weaver-generated class files | During incremental compilation, AjState records classes generated from source files following the initial compile phase, but before weaving. (So that these can be passed to the weaver on a subsequent iteration if we need to reweave the world). During weaving of a given class file, the weaver may generate additional cla... | 2004-03-17 14:09:38 | 1,079,550,000 | resolved fixed | 7d6b500 | 1,079,620,000 | tests/incremental/initialTests/classWAroundClosureRemoved/AdviceOnIntroduced.delete.20.java tests/incremental/initialTests/classWAroundClosureRemoved/AdviceOnIntroduced.java tests/incremental/initialTests/classWAroundClosureRemoved/Main.java weaver/src/org/aspectj/weaver/bcel/UnwovenClassFile.java | AspectJ |
508 | 40,192 | Bug 40192 build cancel during weaving | The build can not be cancelled during the bytecode weaving stage. | 2003-07-16 06:57:36 | 1,058,350,000 | resolved fixed | 183fc23 | 1,079,610,000 | ajde/src/org/aspectj/ajde/internal/BuildNotifierAdapter.java ajde/testdata/BuildCancelling/Cl1.java ajde/testdata/BuildCancelling/Cl2.java ajde/testdata/BuildCancelling/Cl3.java ajde/testdata/BuildCancelling/HW.java ajde/testsrc/org/aspectj/ajde/AjdeTests.java ajde/testsrc/org/aspectj/ajde/BuildCancellingTest.java brid... | AspectJ |
509 | 47,910 | Bug 47910 ajc -outjar jarfile does not contain MANIFEST.MF | I call ajc -sourceroots <mydir> -outjar <my.jar> and an output file is created with a .jar extension, but it is not a valid jar file because there is no MANIFEST.MF file. I see that the text for ajc says: -outjar <file> put output classes in zip file <file> which might imply that it is supposed to be a zip file, but a ... | 2003-12-02 13:35:01 | 1,070,390,000 | resolved fixed | 34dbb0c | 1,079,530,000 | ajde/testdata/JarManifestTest/src/Main.java ajde/testsrc/org/aspectj/ajde/AjdeTests.java ajde/testsrc/org/aspectj/ajde/InpathTestcase.java ajde/testsrc/org/aspectj/ajde/JarManifestTest.java ajde/testsrc/org/aspectj/ajde/ResourceCopyTestCase.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildMa... | AspectJ |
510 | 54,625 | Bug 54625 Incremental support does not work with outjar | Either fix the class file deleting etc. to work with jars, or always do a batch build when working with outjars. | 2004-03-12 09:43:12 | 1,079,100,000 | resolved fixed | 1a4c02c | 1,079,450,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java | AspectJ |
511 | 54,965 | Bug 54965 Incremental compilation does twice as much work as necessary | When I added support for -outjar in the test harness, I was surprised to find duplicate entry exceptions coming from the output file writing to the outjar. I traced it through, and found that every source file passed to an incremental compile is in fact compiled twice! The first time round we note the references, and o... | 2004-03-16 10:08:56 | 1,079,450,000 | resolved fixed | 41c6f6d | 1,079,450,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java | AspectJ |
512 | 51,322 | Bug 51322 Introduce Unknown Type to class causes Null pointer exception | null | 2004-02-07 17:11:16 | 1,076,190,000 | resolved fixed | 5c67166 | 1,079,390,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/InterTypeMethodDeclaration.java tests/bugs/Pr51322.java | AspectJ |
513 | 44,272 | Bug 44272 retitle warning to "circular {advice} dependency at ..." | When writing aspects with cycles in the advice precedence, get warning "circular dependency at {join point}" -- should be "circular advice dependency..." or "circular advice precedences at {join point} -- reorder the advice in the aspect". FWIW, here's an example of circularity in advice precedence: ---- aspect A { poi... | 2003-10-07 00:05:59 | 1,065,500,000 | resolved fixed | 0109534 | 1,079,370,000 | tests/bugs/CircularAdvicePrecedence.java weaver/src/org/aspectj/weaver/Shadow.java weaver/src/org/aspectj/weaver/patterns/DeclarePrecedence.java | AspectJ |
514 | 50,776 | Bug 50776 fail in compiling aspect with overriding method introduction with different throws clause | A first class (class A) declares only one method with some exceptions in the throws clause ( void m() throws Exception ). A second class (class B) extends it without redefinig the method. An aspect declares a method introduction in the class B, with the same name, signature and return type of the one in class A, but wi... | 2004-01-28 12:21:31 | 1,075,310,000 | resolved fixed | c798923 | 1,078,480,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/InterTypeMemberFinder.java tests/bugs/IntertypeDifferentThrows.java | AspectJ |
515 | 52,394 | Bug 52394 inter-type declarations cause JRockit Crash | null | 2004-02-18 13:35:38 | 1,077,130,000 | resolved fixed | 5d73494 | 1,078,420,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectClinit.java weaver/src/org/aspectj/weaver/bcel/BcelClassWeaver.java | AspectJ |
516 | 51,320 | Bug 51320 ClasscastException on concretization of if(false) | I get the following exception when weaving the attached aspect on the dev build. java.lang.ClassCastException at org.aspectj.weaver.patterns.IfPointcut.concretize1(IfPointcut.java:156) at org.aspectj.weaver.patterns.IfPointcut.concretize(IfPointcut.java:143) at org.aspectj.weaver.patterns.Pointcut.concretize(Pointcut.j... | 2004-02-07 12:26:00 | 1,076,170,000 | resolved fixed | fbc0aa3 | 1,077,710,000 | tests/bugs/DecwClassCastException.java weaver/src/org/aspectj/weaver/patterns/ArgsPointcut.java weaver/src/org/aspectj/weaver/patterns/CflowPointcut.java weaver/src/org/aspectj/weaver/patterns/IfPointcut.java weaver/src/org/aspectj/weaver/patterns/ThisOrTargetPointcut.java | AspectJ |
517 | 36,430 | Bug 36430 Support -Xreweavable option | null | 2003-04-13 03:35:26 | 1,050,220,000 | resolved fixed | 16a0abd | 1,077,630,000 | ajde/testdata/ReweavableTest/CalculatePI.java ajde/testdata/ReweavableTest/tjp/Demo.java ajde/testdata/ReweavableTest/tjp/GetInfo.java ajde/testsrc/org/aspectj/ajde/AjdeTests.java ajde/testsrc/org/aspectj/ajde/ReweavableTestCase.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java org.aspectj.ajdt.co... | AspectJ |
518 | 51,929 | Bug 51929 Advice calling protected super method causing java.lang.VerifyError 'Bad access to protected data' | A java.lang.VerifyError is thrown at runtime complaining about 'Bad access to protected data' when advice, on a sub-aspect, that calls a protected method, on the super-aspect, is woven into a class. However another call to the same method woven into the same class but due to advice declared in the super-aspect works fi... | 2004-02-12 21:13:29 | 1,076,640,000 | resolved fixed | 6ddae42 | 1,077,230,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AccessForInlineVisitor.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseFactory.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/InlineAccessFieldBinding.java tests/bugs/protectedvf/main/Driver.java | AspectJ |
519 | 45,489 | Bug 45489 Structure model is wrong when re-opened | Some elements have the wrong kinds when a saved structure model is loaded. E.g. if I close then re-open the eclipse workbench classes are shown as interface in the outline view. Also if I traverse the tree with the code below I get the wrong kinds assigned to classed, interfaces, aspects and import declarations. List l... | 2003-10-24 06:34:59 | 1,066,990,000 | resolved fixed | 669cd7c | 1,077,210,000 | ajde/testsrc/org/aspectj/ajde/AjdeTests.java ajde/testsrc/org/aspectj/ajde/SavedModelConsistencyTest.java asm/src/org/aspectj/asm/IProgramElement.java | AspectJ |
520 | 50,570 | Bug 50570 CatchClauseSignature has broken operation | It looks like the getParameterName() operation on org.aspectj.lang.reflect. CatchClauseSignature is not working. Instead of returning the name of the exception as declared in the matched handler, returns the string value "<missing>". Here is a test case that shows the problem :- ------START OF TEST CASE CODE-----------... | 2004-01-25 11:47:31 | 1,075,050,000 | resolved fixed | 19bac86 | 1,075,250,000 | tests/bugs/HandlerSig.java weaver/src/org/aspectj/weaver/Member.java weaver/src/org/aspectj/weaver/ResolvedMember.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java | AspectJ |
521 | 48,091 | Bug 48091 Lazy instantiation of thisJoinPoint | In cases where the body of advice refers to a non-statically evaluable portion of thisJoinPoint (so that it can't be optimized by the compiler to thisJoinPointStaticPart), the JoinPoint object is currently always created before entering the advice body - even if the JoinPoint object would never actually be accessed (be... | 2003-12-04 12:18:33 | 1,070,560,000 | resolved fixed | 0c83343 | 1,074,910,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/AjdtBatchTest... | AspectJ |
522 | 48,072 | Bug 48072 Complete relationship information in the structure model | Complete the set of relationships surfaced by the structure model (e.g. including support for declare parents etc.) - Mik you had a document listing the things yet to be done here? | 2003-12-04 10:54:27 | 1,070,550,000 | resolved fixed | f24286d | 1,074,850,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java weaver/src/org/aspectj/weaver/Checker.java weaver/src/org/aspectj/weaver/ICrossReferenceHandler.java weaver/src/org/aspectj/weaver/Shadow.java weaver/src/org/aspectj/weaver/World.java weaver/src/org/aspectj/weaver/bcel/BcelWorld.java | AspectJ |
523 | 50,200 | Bug 50200 aspectjrt.jar manifest file name needs changing to upper case | null | 2004-01-19 06:01:56 | 1,074,510,000 | resolved fixed | 6f099df | 1,074,770,000 | build/src/org/aspectj/internal/tools/ant/taskdefs/AntBuilder.java | AspectJ |
524 | 42,515 | Bug 42515 NPE When compiling intertype declaration | null | 2003-09-04 07:12:20 | 1,062,670,000 | resolved fixed | 6d2abc1 | 1,074,170,000 | tests/bugs/caseSensitivity/uniqueId/Numbered.java | AspectJ |
525 | 36,234 | Bug 36234 out of memory error when compiling | Getting an out of memory error when compiling with Ajc 1.1 RC1. I know this is not very descriptive, but maybe you can point me into a direction of getting more output. here some additional information though: Code base is medium size (about 1500 classfiles) I removed all my aspects and still receive the error. Running... | 2003-04-08 14:04:10 | 1,049,830,000 | resolved fixed | b3b1eec | 1,074,170,000 | org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java | AspectJ |
526 | 47,952 | Bug 47952 SoftException.printStackTrace(..) should print wrapped throwable too | SoftExceptions should print not only their trace but also that of the wrapped throwable. We should be able to set a flag on class initialization whether we are running under 1.4 and then implement it under 1.4 using initCause() and otherwise by direct delegation. I can do this fix if we're agreed. | 2003-12-03 00:43:54 | 1,070,430,000 | resolved fixed | ad2fb7a | 1,074,140,000 | runtime/src/org/aspectj/lang/SoftException.java runtime/testsrc/RuntimeModuleTests.java | AspectJ |
527 | 38,824 | Bug 38824 Anomalous handling of inter-type declarations to abstract base classes in aspectj 1.1 | Version 1.1 of aspectj does not handle correctly inter-type declarations to abstract base classes. This appears when the following pattern is present in the code: Suppose there is an interface InterfaceA, another interface InterfaceB and a third interface InterfaceC extending InterfaceA and InterfaceB and containing so... | 2003-06-12 05:35:45 | 1,055,410,000 | resolved fixed | 0071cb4 | 1,074,100,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/problem/AjProblemReporter.java tests/bugs/AbstractBaseAndInterTypeInterface.java weaver/src/org/aspectj/weaver/ResolvedTypeX.java | AspectJ |
528 | 44,587 | Bug 44587 Erroneous exception conversion | null | 2003-10-09 13:58:19 | 1,065,720,000 | resolved fixed | 5834de9 | 1,074,090,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectClinit.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java runtime/src/org/aspectj/lang/NoAspectBoundException.java runtime/testsrc/RuntimeModuleTests.java tests/bugs/ErroneousExceptionConversion.java tests/b... | AspectJ |
529 | 46,280 | Bug 46280 compiler issues error on inner aspects when privilieged | The compiler complains that "inner aspects must be static" whenever I try to qualify an inner (and static) aspect as privileged, no matter what the enclosing type is (aspect, interface or class). I was using j2sdk1.4.0_02, AspectJ 1.1, eclipse 2.1 (with AJDT 1.1.3). Test case: ------------------ BASE CLASS: public clas... | 2003-11-07 11:32:21 | 1,068,220,000 | resolved fixed | 7bbd1f4 | 1,074,080,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/parser/AjParser.java tests/bugs/PrivilegedParsing.java | AspectJ |
530 | 44,586 | Bug 44586 After throwing advice on ctors doesn't execute for inter-type decls | The following code doesn't work in Ajc 1.1.1, in Ajc built from CVS HEAD (as of yesterday), nor in Ajc 1.0.6: Output: C:\devel\test\excHandling>java AfterThrowingCtor Exception in thread "main" java.lang.IllegalStateException: crash at Foo.initVal(AfterThrowingCtor.java:21) at AfterThrowingCtor.ajc$interFieldInit$After... | 2003-10-09 13:53:43 | 1,065,720,000 | resolved fixed | 87db1e7 | 1,074,010,000 | tests/bugs/AfterThrowingCtor.java | AspectJ |
531 | 49,814 | Bug 49814 ConfigParser.java:132 | null | 2004-01-10 17:46:43 | 1,073,770,000 | resolved fixed | a4a1234 | 1,073,910,000 | org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/ajc/BuildArgParserTestCase.java util/src/org/aspectj/util/ConfigParser.java | AspectJ |
532 | 49,638 | Bug 49638 exception logging: after() throwing advice can't convert Throwable obj to string and ajc aborts | null | 2004-01-07 12:31:34 | 1,073,500,000 | resolved fixed | 7b081f2 | 1,073,640,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/parser/AjParser.java tests/bugs/AfterThrowingAdviceSyntaxError.java | AspectJ |
533 | 41,952 | Bug 41952 XLint warning for call PCD's using subtype of defining type | null | 2003-08-26 05:38:20 | 1,061,890,000 | resolved fixed | 97ab1e9 | 1,073,490,000 | bridge/src/org/aspectj/bridge/IMessage.java bridge/src/org/aspectj/bridge/Message.java bridge/src/org/aspectj/bridge/MessageUtil.java bridge/src/org/aspectj/bridge/SourceLocation.java org.aspectj.ajdt.core/src/org/aspectj/tools/ajc/Main.java testing/src/org/aspectj/testing/xml/SoftMessage.java tests/bugs/DeclaringTypeW... | AspectJ |
534 | 47,754 | Bug 47754 illegal method modifier | the attached example throws this at class load time. please note that this bug results in a different exception when happens in a different setup, and when the class is loaded by JBoss. (more cryptic, talking about generic class format error) Exception in thread "main" java.lang.ClassFormatError: com/netvisor/nvsr/clie... | 2003-11-29 03:48:15 | 1,070,100,000 | resolved fixed | 7322131 | 1,073,490,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/InterTypeMethodDeclaration.java tests/bugs/StaticInterfaceMethods.java | AspectJ |
535 | 49,250 | Bug 49250 alias getCause for getWrappedThrowable in SoftException | SoftException should implement getCause(): public Throwable getCause() { return inner; } (As pointed out by Ramnivas, misc mail messages, code comments...) Using getCause() means the chain should print as expected in 1.4+, esp. when SoftException is itself wrapped as a RemoteException. Since getCause() replicates getWr... | 2003-12-21 15:01:36 | 1,072,040,000 | resolved fixed | eac16ae | 1,073,480,000 | runtime/src/org/aspectj/lang/SoftException.java | AspectJ |
536 | 49,457 | Bug 49457 No error on overloaded pointcuts unless binding variables | The compiler might not be detecting overloaded pointcut names when parameters are not bound, and/or might not be implementing the pointcut correctly. Below is the context from my reply to Ron Bodkin on aspectj-dev "Proper behavior of overloaded pointcut definitions". (I have not checked this code recently or submitted ... | 2004-01-02 00:21:30 | 1,073,020,000 | resolved fixed | c517e85 | 1,073,480,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/AjLookupEnvironment.java tests/bugs/OverloadedPointcutsInAspect.java tests/bugs/OverloadedPointcutsInClass.java | AspectJ |
537 | 47,318 | Bug 47318 org.aspectj.asm.IRelationship.Kind.ALL does not contain all kinds | org.aspectj.asm.IRelationship.Kind.ALL is an array that should contain all kinds that an IRelationship may have. There are three possible kinds defined in IRelationship.java: ADVICE, DECLARE and DECLARE_INTER_TYPE. The Kind[] ALL does only contain ADVICE and DECLARE. This can lead to an ArrayIndexOutOfBoundsException. | 2003-11-23 16:18:11 | 1,069,620,000 | resolved fixed | bdc79f1 | 1,069,620,000 | asm/src/org/aspectj/asm/IRelationship.java | AspectJ |
538 | 43,783 | Bug 43783 AJDT not very stable when confronted with java/aspect errors. | AJDT is not very stable when an eclipse project contains errors like missing classes, wrong package statements etc. etc. This may occurs when refactoring a project (sometimes by changing the source outside eclipse). Note I am using Eclipse 2.1.1, AJDT 1.1.4 + incremental compilation. Generally a lot of exceptions will ... | 2003-09-26 19:36:57 | 1,064,620,000 | resolved fixed | 3e4b59a | 1,066,840,000 | ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java | AspectJ |
539 | 44,117 | Bug 44117 NPE on compile | java.lang.NullPointerException at org.aspectj.weaver.AsmRelationshipProvider.checkerMunger (AsmRelationshipProvider.java:51) at org.aspectj.weaver.Checker.match(Checker.java:58) at org.aspectj.weaver.bcel.BcelClassWeaver.match(BcelClassWeaver.java:985) at org.aspectj.weaver.bcel.BcelClassWeaver.match(BcelClassWeaver.ja... | 2003-10-03 01:17:43 | 1,065,160,000 | resolved fixed | 3117255 | 1,066,320,000 | weaver/src/org/aspectj/weaver/AsmRelationshipProvider.java | AspectJ |
540 | 43,709 | Bug 43709 structure view crash when extending library aspects | I have an library with an aspect that includes advice, which I compile into an outjar. In my client project I extend it, and make a concrete pointcut that results in the library aspect affecting parts of my system. There is a bug and an enhancement request here: 1) A bug: when you look at the structure view for affecte... | 2003-09-25 18:30:52 | 1,064,530,000 | resolved fixed | 426d89b | 1,064,550,000 | asm/src/org/aspectj/asm/internal/ProgramElement.java | AspectJ |
541 | 43,033 | Bug 43033 Compiler crash in ajc head (post 1.1.1 rc1) on erroneous program | null | 2003-09-12 13:34:02 | 1,063,390,000 | resolved fixed | 5357086 | 1,063,960,000 | tests/bugs/concretizeNpe/base/ExceptionHandling.java tests/bugs/concretizeNpe/model/ModelExceptionHandling.java weaver/src/org/aspectj/weaver/patterns/ReferencePointcut.java | AspectJ |
542 | 43,194 | Bug 43194 java.lang.VerifyError in generated code | See the attached file VerifyBug.jar for the source files. You won't need anything else to compiler and reproduce this bug: ~/bug> ls AbstractCaching.java TreeNode.java VerifyBug.jar ContainerCaching.java TreeNodeFolding.java WorkspaceGroup.java ContainerLoader.java TreePanel.java WorkspaceNode.java Makefile TreeWorkspa... | 2003-09-16 23:21:32 | 1,063,770,000 | resolved fixed | fc0d2af | 1,063,910,000 | tests/bugs/AdviceInteraction.java weaver/src/org/aspectj/weaver/patterns/ReferencePointcut.java | AspectJ |
543 | 42,993 | Bug 42993 Language regression, or possible language improvement? | The file AspectBug.java: public aspect AspectBug extends AbstractCaching perthis(execution(ContainerLoader+.new(..))) { declare parents: ContainerDescriptor implements AbstractCaching.Key; protected pointcut loadExecutions( Key key ): ContainerLoader.containerLoads( *, key ); } abstract aspect AbstractCaching { interfa... | 2003-09-12 04:26:44 | 1,063,360,000 | resolved fixed | b512738 | 1,063,390,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/AjLookupEnvironment.java tests/bugs/ParentsAndPointcuts.java weaver/src/org/aspectj/weaver/CrosscuttingMembersSet.java weaver/src/org/aspectj/weaver/ResolvedTypeX.java | AspectJ |
544 | 42,740 | Bug 42740 declare error fails on pointcuts composed from multiple classes | This error occurs in both 1.1.0 and in the head of CVS as of 9/8/03. The compiler crash output from the CVS head version is at the end. It may be related to 42739, but they may be distinct problems. Sample source: /* * Created on Sep 8, 2003 * * Copyright (c) 2003 New Aspects of Security. All Rights Reserved. */ aspect... | 2003-09-08 22:47:35 | 1,063,080,000 | resolved fixed | d78d9ed | 1,063,150,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/PointcutDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/AjLookupEnvironment.java tests/bugs/declareBinding/SampleExceptionHandling... | AspectJ |
545 | 42,539 | Bug 42539 throw derivative pointcuts not advised. | Given the following point cut and advice: public aspect ExceptionAspect { pointcut exceptionThrower() : execution(public * ExceptionBugTest.*(..) throws Exception+); declare warning : exceptionThrower() : "throws Exception+"; } And the to be aspected code: public class ExceptionBugTest { class MyException extends Excep... | 2003-09-04 11:15:58 | 1,062,690,000 | resolved fixed | 8660cc1 | 1,062,690,000 | tests/bugs/throwsSignature/ExceptionAspect.java tests/bugs/throwsSignature/ExceptionBugTest.java weaver/src/org/aspectj/weaver/patterns/ThrowsPattern.java | AspectJ |
546 | 41,359 | Bug 41359 percflow aspects compiled from jars share one instance for all entry points | When a percflow aspect is woven into source code from a jar using the aspectPath compiler option, it produces only one instance of the aspect for each entrypoint defined in the source code. | 2003-08-09 11:19:18 | 1,060,440,000 | resolved fixed | 5a07dce | 1,062,110,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java tests/bugs/perCflowAndJar/PerCFlowCompileFromJar.java tests/bugs/perCflowAndJar/PerCFlowCompileFromJarTest.java | AspectJ |
547 | 41,888 | Bug 41888 call PCD fails when given subtype of defining type | null | 2003-08-23 00:20:38 | 1,061,610,000 | resolved wontfix | 9df9062 | 1,061,610,000 | tests/bugs/CallReference.java | AspectJ |
548 | 39,436 | Bug 39436 [Tasks] No summary shown in status line | build I20030625 The old tasks view showed a summary of the number of tasks, errors, warnings and infos in the status line. This is missing in the reworked view. | 2003-06-27 14:32:14 | 1,056,740,000 | verified fixed | d90acdc | 1,061,480,000 | weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java | AspectJ |
549 | 41,254 | Bug 41254 revise asm and create interfaces | null | 2003-08-07 09:00:15 | 1,060,260,000 | resolved fixed | f1deb9c | 1,060,340,000 | ajbrowser/src/org/aspectj/tools/ajbrowser/BrowserManager.java ajbrowser/src/org/aspectj/tools/ajbrowser/TopFrame.java ajde/src/org/aspectj/ajde/internal/LstBuildConfigManager.java ajde/src/org/aspectj/ajde/ui/AbstractIconRegistry.java ajde/src/org/aspectj/ajde/ui/BuildConfigModel.java ajde/src/org/aspectj/ajde/ui/Build... | AspectJ |
550 | 41,123 | Bug 41123 Weaving failure when using injars | Sample run that fails using injars: C:\devel\test\libraryWeave>ajc ajee\testing\ExecutionMonitor.aj C:\devel\test\libraryWeave>jar cf ajee.jar ajee\testing\*.class C:\devel\test\libraryWeave>ajc -injars ajee.jar model\BusObj.java model\MonitorB usObj.java C:\devel\test\libraryWeave\model\BusObj.java:3 Class must implem... | 2003-08-05 00:39:51 | 1,060,060,000 | resolved fixed | 3e59745 | 1,060,310,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/AjLookupEnvironment.java tests/bugs/moreInterfaceLibrary/model/BusObj.java tests/bugs/moreInterfaceLibrary/model/MonitorBusObj.java weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java | AspectJ |
551 | 40,534 | Bug 40534 Declare warning/error output - more detail required. | At present the declare warning and declare error functionality of the compiler provides no detailed information about what it is in the user code that has led to the generation of the compile-time warning or error. Consider the following test case... public class A { public static void main(String[] args) { A a = new A... | 2003-07-20 12:16:58 | 1,058,720,000 | resolved fixed | 684c9c1 | 1,060,250,000 | bridge/src/org/aspectj/bridge/IMessage.java bridge/src/org/aspectj/bridge/Message.java testing/src/org/aspectj/testing/xml/SoftMessage.java weaver/src/org/aspectj/weaver/Checker.java | AspectJ |
552 | 40,257 | Bug 40257 parsing of "../" paths in LST files is broken | Relative paths (e.g. "../") are no longer parser properly in AJDE 1.1.0. | 2003-07-16 15:06:12 | 1,058,380,000 | resolved fixed | acdf688 | 1,060,240,000 | ajbrowser/testsrc/org/aspectj/tools/ajbrowser/BrowserManagerTest.java ajbrowser/testsrc/org/aspectj/tools/ajbrowser/InteractiveBrowserTest.java ajde/src/org/aspectj/ajde/ui/swing/CompilerMessagesCellRenderer.java org.aspectj.ajdt.core/testdata/bug-40257/d1/A.java org.aspectj.ajdt.core/testdata/bug-40257/d1/d2/B.java or... | AspectJ |
553 | 41,170 | Bug 41170 -classpath entries in .lst files overwrite command-line -classpath entries | If the command-line specifies both a -classpath entry and a .lst file with a -classpath entry, the .lst file entry seems to replace rather than supplement the command-line entry. I expect options to be cumulative. See tests/bugs/options/classpath | 2003-08-05 20:19:15 | 1,060,130,000 | resolved wontfix | 40fb451 | 1,060,130,000 | tests/bugs/options/classpath/Client.java tests/bugs/options/classpath/lib/Library.java | AspectJ |
554 | 38,717 | Bug 38717 ".lst" file parsing errors should include sourceline information | To check for this bug add an erroneous line to an ".lst" file and compile it with AJDE. The error message returned is project-specific. It should be specific to the ".lst" file in which the error originated (i.e. the message needs a SourceLocation). | 2003-06-10 12:03:37 | 1,055,260,000 | resolved fixed | a26cac9 | 1,059,590,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/AjdtCommand.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java | AspectJ |
555 | 39,974 | Bug 39974 Some strange error when compiling the observer example with JBuilder7 integrated AJDE | When I compiled the observer/subject protocol example with JBuilder7 integrated AJDE,there was a strange internal error C:/JBuilder7/extras/aspectj-110/doc/examples/observer/Observer.java:0: Internal compiler error java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.lookup.EclipseWorld.makeResolvedMemb... | 2003-07-12 06:00:12 | 1,058,000,000 | resolved fixed | f5d31ba | 1,059,560,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmBuilder.java | AspectJ |
556 | 39,626 | Bug 39626 Compiler error when compiling a buggy class | I use AspectJ 1.1 from within eclipse. After some time of developing, I get following stack trace (Wrapped in the eclipse gui), when I try to compile a java file with a huge amount of syntax errors, missing variables, and other problems. As soon as I have fixed these issues, I can comnpile normally as ever. Unfortunatl... | 2003-07-04 05:26:04 | 1,057,310,000 | resolved fixed | 7886970 | 1,059,560,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmBuilder.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/core/builder/AjdtBuilderTests.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/core/builder/AsmBuilderTest.java | AspectJ |
557 | 39,959 | Bug 39959 AJC Compiler generates invalid class files under certain circunstances. | I made a package (I will attach it to this bug with the name bug.zip) which shows a sample Java program that correctly runs when compiled with javac and have classloading problems every time it is compiled with ajc. Please see the file README.TO.DEMONSTRATE.BUG inside the bug.zip archive for detailed (although simple) ... | 2003-07-11 16:01:33 | 1,057,950,000 | resolved fixed | ee03a3e | 1,059,480,000 | tests/bugs/bootstrapClasspath/UsesDOMParser.java | AspectJ |
558 | 40,824 | Bug 40824 asm treats "declare parents" as methods | "declare parents" member declarations report their kind as "method" instead of what they are. | 2003-07-28 05:55:44 | 1,059,390,000 | resolved fixed | 58e3cb2 | 1,059,480,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmBuilder.java | AspectJ |
559 | 39,842 | Bug 39842 allow use of an environment variable to set compiler arguments | I'm trying to create a special jsp compilation servlet in Tomcat 4.x that uses the aspectj compiler. I can plug in the compiler adapter, but I don't have control of the ant code they use to invoke the compiler, so I'd like to use an environment variable to do this (apparently the only mechanism they do support). I'm do... | 2003-07-09 19:31:03 | 1,057,790,000 | resolved fixed | 2502ee5 | 1,059,190,000 | taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java taskdefs/src/org/aspectj/tools/ant/taskdefs/ICommandEditor.java taskdefs/testsrc/org/aspectj/tools/ant/taskdefs/AjcTaskTest.java | AspectJ |
560 | 40,771 | Bug 40771 ajde apis are unnecessariy coupled to swing | The AJDE APIs are coupled to javax.swing by org.aspectj.ajde.EditorManager. The EditorManager needs to be refactored, have swing specific parts moved to org.aspectj.ajde.ui.swing and org.aspectj.ajbrowser. | 2003-07-25 10:47:43 | 1,059,140,000 | resolved fixed | bbd832b | 1,059,150,000 | ajbrowser/src/org/aspectj/tools/ajbrowser/BasicEditor.java ajbrowser/src/org/aspectj/tools/ajbrowser/BrowserManager.java ajbrowser/src/org/aspectj/tools/ajbrowser/BuildConfigPopupMenu.java ajbrowser/src/org/aspectj/tools/ajbrowser/CompilerMessagesPanel.java ajbrowser/src/org/aspectj/tools/ajbrowser/EditorManager.java a... | AspectJ |
561 | 40,380 | Bug 40380 AspectJ does not honour libraries defined via Project Properties | AJDT 1.1.3, Eclipse 2.1 To build a JDK 1.4. program under Eclipse using JDK 1.3 the appropriate build library should be selected in the Project Properties "Java Build Path". However AspectJ continues to use the JDK associated with Eclipse so errors result from using 1.4 APIs. The same will occur running Eclipse under 1... | 2003-07-17 11:08:28 | 1,058,450,000 | resolved fixed | d5ea336 | 1,058,980,000 | ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/AjdtCommand.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java | AspectJ |
562 | 39,993 | Bug 39993 ajc stack trace on declaring hashcode() method in aspect | From an email sent to the user's list 6/26/2003: ------------------------------------------ ajc 1.1 NPE when an aspect declares hashcode() as follows: interface Identifiable { void setId(Id id); Id getId(); } aspect IdentifiableAspect { private Id Identifiable.id = null; public Id Identifiable.getId() { return this.id;... | 2003-07-13 15:02:03 | 1,058,120,000 | resolved fixed | 026b272 | 1,058,910,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/InterSuperFixerVisitor.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/InterSuperReference.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/InterTypeDeclaration.java tests/bugs/MultipleSuperCf.java tests/bugs/Ove... | AspectJ |
563 | 39,458 | Bug 39458 Compiler crash in ajc 1.1 | null | 2003-06-29 23:42:42 | 1,056,940,000 | resolved fixed | ba41fae | 1,057,190,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AccessForInlineVisitor.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AdviceDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/PrivilegedHandler.java tests/bugs/MissingImport.java tests/bugs/NewVoid... | AspectJ |
564 | 38,131 | Bug 38131 ajc needs -d . option while correctly compiling classes from subpackage | null | 2003-05-27 01:46:58 | 1,054,010,000 | resolved fixed | c509c6f | 1,054,060,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java org.aspectj.ajdt.core/testdata/src1/WrongPackage.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BasicCommandTestCase.java | AspectJ |
565 | 37,739 | Bug 37739 Unexpected Xlint:unresolvableMember warning with withincode | The following code produces an Xlint:unresolvableMember warning: class A { A(Class type) {} A() { this(String.class); } } class B { public void test() { } public void test2() { test(); } } aspect C { void around() : (call (void B.test()) && withincode (void B.test2())) { proceed(); } } The warning text is: Warning.java... | 2003-05-15 21:20:16 | 1,053,050,000 | resolved fixed | 2072ac1 | 1,053,370,000 | tests/bugs/CatchSig.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java | AspectJ |
566 | 37,021 | Bug 37021 source path wrong in declare warning on binary files | In declare warning messages when targeting .class files from -injars, the source path is listed in the form "app.Main.class" rather than "app/Main.[java|aj]". See tests/new/binaryWarnings/.. for code to run to see the problem. Limitations of the tests: - These tests return false positives when detecting this error beca... | 2003-04-28 15:03:42 | 1,051,560,000 | resolved fixed | 9b30f9f | 1,051,560,000 | tests/new/binaryWarnings/src/app/Main.java tests/new/binaryWarnings/src/aspects/MainWarnings.java | AspectJ |
567 | 30,663 | Bug 30663 lame error message: "negation doesn't allow binding" | AspectJ Compiler 1.1beta4 This program: public aspect Foo { pointcut p(int i): call(void f(i)); } produces these error messages: negation doesn't allow binding formal unbound in pointcut 2 errors It should say something like "binding is only allowed in state-based pointcuts", and it should print the file and line numbe... | 2003-01-30 15:48:08 | 1,043,960,000 | resolved fixed | 7d14432 | 1,051,490,000 | tests/bugs/BadBindingError.java weaver/src/org/aspectj/weaver/bcel/BcelClassWeaver.java weaver/src/org/aspectj/weaver/patterns/TypePattern.java weaver/src/org/aspectj/weaver/patterns/WildTypePattern.java | AspectJ |
568 | 36,936 | Bug 36936 Error when introducing members of type Class | Using AspectJ 1.1 RC1 public aspect Asp { public Class Trg.member = String.class; } public class Trg { public static void main(String args[]) { new Trg(); System.out.println("All ok"); } } Compiling with "ajc Asp.java Trg.java" and running Trg, prints "All ok", as it should. Compiling with "ajc Trg.java Asp.java" and r... | 2003-04-25 16:36:56 | 1,051,300,000 | resolved fixed | 8d793a3 | 1,051,490,000 | tests/bugs/interSpecials/Asp.java tests/bugs/interSpecials/Trg.java | AspectJ |
569 | 34,951 | Bug 34951 NPE compiling without aspectjrt.jar | Compiling spacewar without specifying aspectjrt.jar on the classpath causes a NPE. Expected an error message "aspectjrt.jar required". Steps to reproduce 1) install latest 2) cd doc/examples 3) java -jar ../../lib/aspectjtools.jar -verbose @spacewar/debug.lst RESULT:NPE in attached log | 2003-03-13 14:38:58 | 1,047,580,000 | resolved fixed | f236927 | 1,051,490,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BasicCommandTestCase.java | AspectJ |
570 | 36,803 | Bug 36803 BCException thrown by AspectJ 1.1rc1 | [iajc] expected state: resolved got: concrete [iajc] expected state: resolved got: concrete [iajc] org.aspectj.weaver.BCException: expected state: resolved got: concrete [iajc] at org.aspectj.weaver.patterns.Pointcut.assertState (Pointcut.java:236) [iajc] at org.aspectj.weaver.patterns.Pointcut.concretize (Pointcut.jav... | 2003-04-23 12:56:03 | 1,051,120,000 | resolved fixed | 1e502f5 | 1,051,290,000 | tests/bugs/CflowConcrete.java weaver/src/org/aspectj/weaver/patterns/KindedPointcut.java weaver/src/org/aspectj/weaver/patterns/Pointcut.java weaver/src/org/aspectj/weaver/patterns/WithinPointcut.java weaver/src/org/aspectj/weaver/patterns/WithincodePointcut.java | AspectJ |
571 | 29,665 | Bug 29665 Inconsistant stack height | Using AspectJ1.1b4 running the following program crashes it with this message: "Inconsistent stack height 0 != 2". While reducing my original program to the minimum example below I had also stack height 0 != 1, but I guess that is related, so I didn't reproduce it (mail me if this you need this, too). mport java.lang.r... | 2003-01-16 15:18:00 | 1,042,750,000 | resolved fixed | 6c9118b | 1,051,050,000 | tests/bugs/StackError.java tests/bugs/messyAround/cap/OptionList.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java | AspectJ |
572 | 36,564 | Bug 36564 Internal compiler error | Eclipse: 2.1.0, 200302211557 AspectJ: 1.1.1 I get the following internal error when using "thisJoinPoint.getStaticPart()" in around advice at a call joinpoit (source below). Using just "thisJoinPoint" is fine. java.lang.NullPointerException at org.eclipse.jdt.internal.compiler.ast.MessageSend.analyseCode (MessageSend.j... | 2003-04-16 08:42:21 | 1,050,500,000 | resolved fixed | 0a8dbde | 1,051,030,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/ThisJoinPointVisitor.java tests/bugs/tjpStaticPart/Exceptions.java tests/bugs/tjpStaticPart/Test.java | AspectJ |
573 | 35,725 | Bug 35725 Inter type declaration to base class not seen by derived class | The following code shows what I believe is an incorrect error - the base class AImpl is made concrete by the aspect Af, but the compilation of BImpl does not recognize this fact. This problem is for version 1.1rc1 and is not seen in 1.0.6. // --------------------- // A.java package a_intf; public interface A { A f(); }... | 2003-03-26 15:16:24 | 1,048,710,000 | resolved fixed | 11b3b07 | 1,050,010,000 | tests/bugs/interInherit/a_impl/AImpl.java tests/bugs/interInherit/a_impl/Af.java tests/bugs/interInherit/a_intf/A.java tests/bugs/interInherit/b_impl/BImpl.java tests/bugs/interInherit/b_intf/B.java | AspectJ |
574 | 36,046 | Bug 36046 inter-type declaration bug with abstract classes | This error occurs when you do an inter-type declaration on an interface, use declare parents to make an abstract base class implement it, and then try to use the declared (method), it fails. If you make the base class concrete, then this doesn't fail. The following code demonstrates the error. If you run java Driver yo... | 2003-04-03 18:21:57 | 1,049,410,000 | resolved fixed | 808bae8 | 1,050,010,000 | tests/bugs/interAbstract/Driver.java weaver/src/org/aspectj/weaver/bcel/BcelClassWeaver.java weaver/src/org/aspectj/weaver/bcel/LazyClassGen.java weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java | AspectJ |
575 | 33,474 | Bug 33474 bad source locations for declare error/warning | null | 2003-02-27 14:03:15 | 1,046,370,000 | resolved fixed | 989aaf7 | 1,048,780,000 | ajde/testdata/examples/declare-warning/apackage/InitCatcher.java ajde/testdata/examples/declare-warning/apackage/SomeClass.java ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java ajde/testsrc/org/aspectj/ajde/AjdeTests.java ajde/testsrc/org/aspectj/ajde/CompilerMessagesTest.java ajde/testsrc/org/aspectj/ajde/NullIdeManage... | AspectJ |
576 | 34,925 | Bug 34925 compiler crash on yesterday's rc1 build | null | 2003-03-13 11:58:52 | 1,047,570,000 | resolved fixed | 56cc4f2 | 1,047,580,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseShadow.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/problem/AjProblemReporter.java tests/bugs/ConvertToUnchecked.java | AspectJ |
577 | 34,858 | Bug 34858 Weaver crash | null | 2003-03-12 14:50:32 | 1,047,500,000 | resolved fixed | 7746fcb | 1,047,510,000 | tests/bugs/CflowBinding.java tests/bugs/CflowBindingOrig.java weaver/src/org/aspectj/weaver/patterns/CflowPointcut.java | AspectJ |
578 | 34,820 | Bug 34820 ajc -aspectpath fails with NPE for cflow pointcuts | null | 2003-03-12 10:36:41 | 1,047,480,000 | resolved fixed | db37189 | 1,047,500,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseAdvice.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseFactory.java | AspectJ |
579 | 29,934 | Bug 29934 runtime NullPointerException when applying around advice to other around advice | When the program below is run, it produces a NullPointerException... java.lang.NullPointerException at A2.ajc$around$A2$3b6proceed(CflowCycles.java) at A2.ajc$around$A2$3b6_aroundBody3(CflowCycles.java:35) at Target.run(CflowCycles.java:24) at CflowCycles.run_aroundBody4(CflowCycles.java:8) at CflowCycles.main_aroundBo... | 2003-01-21 20:13:59 | 1,043,200,000 | resolved fixed | 0fb5f69 | 1,047,430,000 | weaver/src/org/aspectj/weaver/bcel/BcelShadow.java | AspectJ |
580 | 32,239 | Bug 32239 Dumps assembly code if Object[] used in args (BcelRenderer.java:152) | null | 2003-02-19 10:07:28 | 1,045,670,000 | resolved fixed | ae0ef30 | 1,047,360,000 | weaver/src/org/aspectj/weaver/bcel/BcelRenderer.java weaver/src/org/aspectj/weaver/bcel/Utility.java | AspectJ |
581 | 32,421 | Bug 32421 can't resolve nested public interfaces | This may be caused by the bug as 32399 file TransactionTest.java: import sub.ExecutionMonitor; public class TransactionTest { static Transaction theTransaction; private void assertCommitted() { theTransaction.getCount("method-execution", "commit"); } static aspect MonitorTest { declare parents: Transaction implements E... | 2003-02-20 17:33:37 | 1,045,780,000 | resolved fixed | 0a175d2 | 1,046,990,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseScope.java tests/bugs/InnerPointcut.java tests/bugs/interfaceNames/TransactionTest.java tests/bugs/interfaceNames/sub/ExecutionMonitor.java tests/new/EachObjectInDeepPackage.java | AspectJ |
582 | 33,948 | Bug 33948 inter-type no-arg constructor declaration conflict with compiler-generated constructor | Get error "inter-type declaration from A conflicts with existing member" when declaring a no-arg constructor in an aspect on another type which has no constructors. Likely the compiler is generating a default constructor which collides in the weaver. See test case: tests/bugs/ConstructorDeclaration.java Can the weaver ... | 2003-03-06 02:48:01 | 1,046,940,000 | resolved fixed | 6a8fa08 | 1,046,940,000 | tests/bugs/ConstructorDeclaration.java | AspectJ |
583 | 32,463 | Bug 32463 ajc reports error when encountering static declaration of nested classes | Version: AspectJ Compiler 1.1beta4 The ajc compiler issues a spurious error message and exits with a negative error code when weaving code containing static declaration of a nested class. The compiler seem to write the classfiles correctly but the negative exit status causes problems when e.g. using the AjcCompilerAdap... | 2003-02-21 05:59:47 | 1,045,830,000 | resolved fixed | d1e5c0a | 1,046,910,000 | tests/bugs/WeaveLocal.java weaver/src/org/aspectj/weaver/NameMangler.java weaver/src/org/aspectj/weaver/ResolvedTypeX.java weaver/src/org/aspectj/weaver/TypeX.java weaver/src/org/aspectj/weaver/patterns/WithinPointcut.java weaver/testsrc/org/aspectj/weaver/TypeXTestCase.java | AspectJ |
584 | 33,635 | Bug 33635 Negation of if pointcut does not work | null | 2003-03-02 20:01:54 | 1,046,650,000 | resolved fixed | cb77524 | 1,046,900,000 | tests/bugs/NotIf.java weaver/src/org/aspectj/weaver/patterns/IfPointcut.java | AspectJ |
585 | 30,026 | Bug 30026 NullPointerException when compiling | With the following program I get a NullPointerException during compiling and a warning that the source code of Object is not available for weaving: public class NullPtr { public static void main(String args[]) { NullPtr np = new NullPtr(); np = null; } public void finalize() throws Throwable { } } aspect FinalizeContra... | 2003-01-22 17:06:50 | 1,043,270,000 | resolved fixed | 8e6cef0 | 1,045,190,000 | tests/bugs/Finalizer.java | AspectJ |
586 | 31,423 | Bug 31423 Pointcut adviceexecution() does not work | Pointcut adviceexecution() does not seem to pick advice execution join points in beta4. Here is a program that shows the problem: public class Test { public static void main(String[] args) { } } aspect Aspect1 { before() : execution(* Test.*(..)) { System.out.println("Reached " + thisJoinPoint); } } aspect Aspect2 { be... | 2003-02-09 12:29:28 | 1,044,810,000 | resolved fixed | 19c3e16 | 1,045,180,000 | tests/bugs/AdviceExec.java weaver/src/org/aspectj/weaver/patterns/KindedPointcut.java weaver/src/org/aspectj/weaver/patterns/SignaturePattern.java | AspectJ |
587 | 30,168 | Bug 30168 Error with certain combination of advice | null | 2003-01-24 07:25:03 | 1,043,410,000 | resolved fixed | d15eb32 | 1,045,170,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/ThisJoinPointVisitor.java tests/bugs/crashes/test/Test3.java | AspectJ |
588 | 29,959 | Bug 29959 super call in intertype method declaration body causes VerifyError | AspectJ Compiler 1.1beta4 This program: aspect Foo { void A.foo() { } void B.foo() { super.foo(); } } class A { } class B extends A { } class Main { public static void main(String[] args) { new B(); } } causes this error at runtime: Exception in thread "main" java.lang.VerifyError: (class: B, method: ajc$superDispatch$... | 2003-01-22 07:10:28 | 1,043,240,000 | resolved fixed | 3e2801a | 1,045,170,000 | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/InterTypeConstructorDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/SuperFixerVisitor.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/InterTypeMethodBinding.java org.eclipse.jdt.core/compiler/org/... | AspectJ |
589 | 29,769 | Bug 29769 Ajde does not support new AspectJ 1.1 compiler options | The org.aspectj.ajde.BuildOptionsAdapter interface does not yet support the new AspectJ 1.1 compiler options. These need to be added to the interface, any old or renamed options deprecated, and then the correct processing needs to happen within Ajde to pass these options to the compiler. This enhancement is needed by t... | 2003-01-19 11:42:17 | 1,042,990,000 | resolved fixed | 85a827a | 1,043,460,000 | ajbrowser/src/org/aspectj/tools/ajbrowser/BrowserProperties.java ajde/src/org/aspectj/ajde/BuildOptionsAdapter.java ajde/src/org/aspectj/ajde/ProjectPropertiesAdapter.java ajde/src/org/aspectj/ajde/internal/AspectJBuildManager.java ajde/src/org/aspectj/ajde/internal/CompilerAdapter.java ajde/src/org/aspectj/ajde/ui/int... | AspectJ |
590 | 29,662 | Bug 29662 VerifyError on accessing objects not accessible to the weaver: Incompatible object argument for invokespecial | I use aspectj1.1b4 (the version list box did not let me choose, it offered only "unspecified"). Compiling the program below yields a warning that a affected type is not exposed to the weaver. Running it crashes the program with this message: "java.lang.VerifyError: (class: VerifyError, method: finalize signature: ()V) ... | 2003-01-16 15:12:47 | 1,042,750,000 | resolved fixed | 2d297d7 | 1,043,190,000 | tests/bugs/AroundAccess.java | AspectJ |
591 | 29,186 | Bug 29186 ajc -emacssym chokes on pointcut that includes an intertype method | null | 2003-01-08 21:22:48 | 1,042,080,000 | resolved fixed | c1260e6 | 1,042,580,000 | asm/src/org/aspectj/asm/StructureModel.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmBuilder.java weaver/src/org/aspectj/weaver/AsmAdaptor.java weaver/src/org/aspectj/weaver/Lint.java weaver/src/org/aspectj/weaver/ResolvedTypeX.java weaver/src/org/aspectj/weaver/Shadow.java weaver/src/org/asp... | AspectJ |
592 | 28,919 | Bug 28919 waever tries to weave into native methods ... | If you don't find the exception below in a bug, please add a new bug To make the bug a priority, please include a test program that can reproduce this exception. bad non-abstract method with no code: private native int nativeMessagePumpInitialize() on public class plc.comm.pvi.PviCom$LinkEventHandlerImpl bad non-abstra... | 2002-12-30 16:40:03 | 1,041,280,000 | resolved fixed | 2781720 | 1,042,570,000 | weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java | AspectJ |
593 | 28,974 | Bug 28974 Compiler error when introducing a "final" field | The aspect below fails to compile with 1.1b2, producing the compilation error: -------------------- $ ajc com/ibm/amc/*.java com/ibm/amc/ejb/*.java d:/eclipse/runtime-workspace-ajsamples/Mock EJBs/com/ibm/amc/DemoBeanEJB.java:1: Cannot assign a value to the final field com.ibm.amc.DemoBean.ajc$interField$co m_ibm_amc$v... | 2003-01-03 10:28:23 | 1,041,610,000 | resolved fixed | 99a873c | 1,042,570,000 | weaver/src/org/aspectj/weaver/AjcMemberMaker.java | AspectJ |
1 | 422,205 | Bug 422205 Missing help content reference in MongoDB ODA Data Set UI page | The help context ID is not referenced by the MongoDB DOA data set query page. | 2013-11-20 20:05:32 | 1,385,000,000 | resolved fixed | 345f01b | 1,385,000,000 | data/org.eclipse.birt.data.oda.mongodb.ui/src/org/eclipse/birt/data/oda/mongodb/ui/impl/MongoDBDataSetWizardPage.java | Birt |
2 | 389,229 | Bug 389229 Documentation of possible values/objects of property IDeviceRenderer.FILE_IDENTIFIER | null | 2012-09-11 05:16:02 | 1,347,360,000 | resolved fixed | 37c1c08 | 1,382,650,000 | chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/device/IDeviceRenderer.java | Birt |
3 | 403,306 | Bug 403306 Nested DataEngineSessions and wrong initialization of classLoaderHolder | I have following use case: - Data Cube with measure or level attribute of DataType JavaObject - The concrete value type is loaded from the EAR where BIRT is integrated - Crosstab with Highlight conditions defined The type of the measure value is loaded by the ClassLoader provided by current DataEngineSession: DataEngin... | 2013-03-14 05:52:07 | 1,363,250,000 | closed fixed | 8299b4a | 1,381,480,000 | data/org.eclipse.birt.data/src/org/eclipse/birt/data/engine/impl/DataEngineSession.java | Birt |
4 | 375,294 | Bug 375294 JBoss + Sybase database issue | Build Identifier: 3.7.100.v20110510-0712 Hi, JBoss modify the UnsupportedOperationException send by sybase driver by a org.jboss.util.NestedSQLException Code of org.jboss.resource.adapter.jdbc.WrappedConnection : protected SQLException checkException(Throwable t) throws SQLException { Throwable result = null; if (mc !=... | 2012-03-26 05:12:15 | 1,332,750,000 | resolved fixed | ffe1c1f | 1,367,050,000 | data/org.eclipse.birt.report.data.oda.jdbc/src/org/eclipse/birt/report/data/oda/jdbc/ResultSet.java | Birt |
5 | 416,987 | Bug 416987 ArrayIndexOutOfBoundsException when parsing padding style in HTML text | There is a bug in org.eclipse.birt.report.engine.layout.pdf.util.ShortHandProcessor at line 124 that causes ArrayIndexOutOfBoundsException when parsing padding like "padding:1pt 1.5pt 2pt 2.5pt": org.eclipse.birt.report.engine.layout.pdf.util.HTMLStyleProcessor - The css statement is:width:87.95pt;padding:1pt 1.5pt 2pt... | 2013-09-11 04:59:50 | 1,378,890,000 | resolved fixed | 5eeefcf | 1,380,240,000 | engine/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/layout/pdf/util/ShortHandProcessor.java | Birt |
6 | 416,703 | Bug 416703 Mongodb : Display correctly the Number data type | null | 2013-09-06 05:27:54 | 1,378,460,000 | resolved fixed | 4381f4f | 1,379,550,000 | data/org.eclipse.birt.data.oda.mongodb/src/org/eclipse/birt/data/oda/mongodb/impl/MDbResultSet.java data/org.eclipse.birt.data.oda.mongodb/src/org/eclipse/birt/data/oda/mongodb/internal/impl/MDbMetaData.java data/org.eclipse.birt.data.oda.mongodb/src/org/eclipse/birt/data/oda/mongodb/nls/Messages.java | Birt |
7 | 417,317 | Bug 417317 Error when running chart example SwingInteractivityViewer.java. | null | 2013-09-16 06:05:24 | 1,379,330,000 | verified fixed | ec88e80 | 1,379,340,000 | chart/org.eclipse.birt.chart.engine/src/org/eclipse/birt/chart/render/InteractiveRenderer.java | Birt |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.