1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-08-16 02:10:48 +02:00
org.aspectj/tests/multiIncremental/PR152589/inc1/A.aj

14 Zeilen
194 B
Plaintext

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