1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-16 02:10:48 +02:00
org.aspectj/tests/multiIncremental/PR152589/inc1/A.aj

14 satır
194 B
Plaintext

public aspect A {
after () throwing (Throwable th) : execution(* *(..)) {
System.err.println(thisEnclosingJoinPointStaticPart);
}
}
class C1 {
public void anotherMethod() {
}
}