You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PerCflow.java 113B

12345678910
  1. aspect PerCflow percflow(execution(* Bar.*(..))) {
  2. }
  3. class Bar {
  4. void m() {
  5. n();
  6. }
  7. void n() {
  8. }
  9. }