org.aspectj/tests/multiIncremental/PR152589/inc1/A.aj

14 wiersze
194 B
Plaintext

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