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

14 linhas
194 B
Plaintext

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