org.aspectj/org.aspectj.ajdt.core/testdata/src1/BadBinding.java

23 行
685 B
Java
Raw 通常表示 履歴

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
}
}