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