1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-26 17:58:43 +02:00
org.aspectj/tests/jsrc/TraceCalls.java
2002-12-16 18:51:06 +00:00

6 satır
179 B
Java

aspect TraceCalls extends Trace of eachJVM() {
pointcut targets():
(within(java..*) || within(javax..*) || within(org.aspectj..*)) &&
(calls(* *(..)) || calls(new(..)));
}