1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-10 14:10:57 +02:00
org.aspectj/org.aspectj.ajdt.core/testdata/src1/BadBinding.java

23 satır
685 B
Java
Ham Normal Görünüm Geçmiş

2002-12-16 18:58:19 +01:00
aspect A2 {
after(Object thisObject1): target(thisObject) { // ERR unbound
}
after(Object o1, Object o2): target(o1) || target(o2) { // ERR inconsistent
}
after(Object o1, Object o2): target(o1) && target(o2) { // NO PROB
}
after(Object o1): target(o1) && target(o1) { // ERR multiple
}
after(Object o1): !target(o1) { // ERR can't bind here
}
void around(Object o1): target(o1) {
proceed(2); //ERR can't convert from int to Object
}
void around(Object o1): target(o1) {
proceed(null, 2); //ERR wrong number of args
}
void around(Object o1): target(o1) {
proceed(); //ERR wrong number of args
}
}