Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add Java23 support | Andrew Clement | 2025-03-07 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The huge change with adopting Java23 is that 1.1 > 1.7 Java are now considered unsupported by Eclipse JDT, so the many thousands of tests we have that were specifying java versions lower than 1.8 were all failing with an unsupported version error. All those tests have had their versions bumped to 1.8. That is why this commit includes so many changes. For example where we were specifying 1.5 - which was the case for many many generics/annotations tests, that is now 1.8. Also, some tests have been deleted because they make no sense now (verifying expected errors on Java 1.4 for example, errors that just can’t happen with minimum Java level 1.8). The biggest impact to tests was when bumping above 1.4 compliance suddenly there were 100s of adviceDidNotMatch messages. Some of these messages were actual indications of bad expectations in the test but many of them were just to-be-expected and were fixed either via an -Xlint:ignore option in the test spec or a SuppressAjWarnings in the test source. One or two tests actually revealed real bugs that just didn’t surface with lower level java versions specified. A bare minimum of real Java 23 tests have been added just to get this sanity tested and committed. More would ideally be added. Other notable changes due to Eclipse JDT changes: org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/*.java Changes in here because there are now more validations on the code generator methods we were calling. Now you can’t start manipulating variables without having declared them as proper local variables, so those extra calls to define them have been added. org.aspectj.ajdt.core/src/org/aspectj/org/eclipse/jdt/core/dom With needing to bump up the java versions, these classes had to be brought up to date with AST.JLS20 rather than only supporting versions 2/3. This was mostly copying patterns for the Eclipse classes. | ||||
* | Fix test after node traversal was improved | Alexander Kriegisch | 2024-04-12 | 1 | -4/+3 |
| | | | | | | | | | | | | | | | | | | Due to the latest improvements, an error which was previously not thrown unexpectedly according to a source code comment in test aspect ParameterizedTypesInAnnotationPatterns.aj is now thrown for this kind of pointcut: staticinitialization(@(Foo || List<String>) String) Now the compiler correctly says: no static initialization join points for parameterized types, use raw type instead Relates to #221. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | e37 related changes | aclement | 2011-12-10 | 1 | -4/+5 |
| | |||||
* | testcode for 121575 | aclement | 2005-12-21 | 3 | -0/+69 |
| | |||||
* | last bits for 112105 | aclement | 2005-11-25 | 2 | -1/+174 |
| | |||||
* | new version of GenericAspectY in light of our learning experience wrt. itdm ↵ | acolyer | 2005-11-25 | 1 | -3/+3 |
| | | | | matching and execution | ||||
* | fix for parameterizing reference pointcuts with bindings | acolyer | 2005-11-24 | 1 | -1/+1 |
| | |||||
* | tidied up. | aclement | 2005-11-24 | 1 | -11/+13 |
| | |||||
* | work in progress - not yet active. | aclement | 2005-11-23 | 1 | -2/+7 |
| | |||||
* | case4 of Alex's bug ;) | aclement | 2005-11-17 | 4 | -0/+29 |
| | |||||
* | more tests - for 115237 and alexs bug on the list. | aclement | 2005-11-17 | 5 | -1/+30 |
| | |||||
* | next round of fixes for list bug reported by Alexandru. | aclement | 2005-11-16 | 8 | -0/+30 |
| | |||||
* | committing version with a main() in it! | aclement | 2005-11-16 | 1 | -0/+4 |
| | |||||
* | reported on the list - failing to compile - using ITD to override a ↵ | aclement | 2005-11-14 | 4 | -0/+30 |
| | | | | parameterized method | ||||
* | more binary bridging testcode | aclement | 2005-11-14 | 4 | -0/+11 |
| | |||||
* | more bridge method testcode. | aclement | 2005-11-10 | 4 | -1/+19 |
| | |||||
* | bridging tests. | aclement | 2005-11-07 | 4 | -0/+38 |
| | |||||
* | test X - matches the spec in the AJDK (work for 112105) | aclement | 2005-11-07 | 2 | -0/+175 |
| | |||||
* | test X - matches the spec in the AJDK (work for 112105) | aclement | 2005-11-07 | 1 | -0/+177 |
| | |||||
* | tests for pr62606 - itdcs don't run field initialisers in target type. ↵ | acolyer | 2005-11-03 | 17 | -27/+28 |
| | | | | Largely updates to existing tests to cope with new Lint warning. | ||||
* | testcase | aclement | 2005-11-01 | 1 | -0/+19 |
| | |||||
* | see pr112105 comment #13: new and modified testcode | aclement | 2005-10-26 | 4 | -2/+186 |
| | |||||
* | some bridge method testcases and impl for 108101 | aclement | 2005-10-25 | 6 | -6/+17 |
| | |||||
* | complex aspect! | aclement | 2005-10-21 | 1 | -0/+160 |
| | |||||
* | *Now* we're moving - more and more stuff from GenericsTests is working :) ↵ | aclement | 2005-10-20 | 2 | -2/+25 |
| | | | | see pr112105 comment #11 | ||||
* | Fix for ordering problem when using generic abstract aspects. Fix for ↵ | aclement | 2005-10-20 | 3 | -35/+150 |
| | | | | crappy code (of mine) in ResolvedType.discover... - see pr112105 comment #10 | ||||
* | more design tests. | aclement | 2005-10-20 | 2 | -0/+33 |
| | |||||
* | I've tackled methods and ctor generic itds - now fields. | aclement | 2005-10-19 | 1 | -0/+13 |
| | |||||
* | generics tests revisted post all the recent changes - more of them now pass! | aclement | 2005-10-19 | 10 | -43/+67 |
| | |||||
* | slightly changed parsing test. | aclement | 2005-10-18 | 1 | -1/+1 |
| | |||||
* | Updates for generic ITDs - see pr112105 for a description of all changes. | aclement | 2005-10-14 | 2 | -2/+18 |
| | |||||
* | generic itds - see pr112105 | aclement | 2005-10-11 | 3 | -0/+28 |
| | |||||
* | tests for generic abstract aspects | acolyer | 2005-10-06 | 8 | -30/+188 |
| | |||||
* | these changes prevent us from forgetting the interface bounds of a ↵ | acolyer | 2005-10-05 | 1 | -1/+1 |
| | | | | TypeVariableReferenceType, and from forgetting bindings when parameterizing bindingxxxtypepatterns in generic abstract aspects. | ||||
* | some abstract generic aspect tests, not yet linked into main suite | acolyer | 2005-10-05 | 3 | -0/+245 |
| | |||||
* | two more bug testcases. | aclement | 2005-08-24 | 1 | -0/+16 |
| | |||||
* | whoops - did I forget to check this fix in earlier? | aclement | 2005-08-24 | 1 | -1/+1 |
| | |||||
* | generic itd bridge method test code. | aclement | 2005-08-24 | 11 | -1/+71 |
| | |||||
* | genericitds: bridge method testcode. | aclement | 2005-08-24 | 8 | -0/+210 |
| | |||||
* | @override - another case involving abstract ITDs | aclement | 2005-08-23 | 1 | -0/+17 |
| | |||||
* | @override support for ITDs. Plus some binary weaving generic ITD tests. | aclement | 2005-08-23 | 8 | -3/+34 |
| | |||||
* | @override with ITDs - testcases. | aclement | 2005-08-23 | 7 | -0/+133 |
| | |||||
* | genericitds: activating more tests - including "uberaspects - U" - please ↵ | aclement | 2005-08-22 | 3 | -7/+11 |
| | | | | dont look at it... | ||||
* | genericitds: tests moved around and activated in GenericsTests | aclement | 2005-08-22 | 20 | -179/+133 |
| | |||||
* | genericitds: I'll be finished when I get to Z | aclement | 2005-08-19 | 4 | -5/+306 |
| | |||||
* | genericitds: more funky tests. | aclement | 2005-08-19 | 1 | -12/+21 |
| | |||||
* | just a few tests for generic aspects... | aclement | 2005-08-18 | 18 | -0/+773 |
| | |||||
* | tests for examples in the ajdk generics chapter | acolyer | 2005-08-18 | 3 | -0/+143 |
| | |||||
* | some binary weaving ITD tests, they dont pass yet. | aclement | 2005-08-18 | 4 | -0/+54 |
| | |||||
* | test cases for all examples in the new generics chapter of the ajdk | acolyer | 2005-08-17 | 6 | -0/+200 |
| |