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.

Handles.aj 160B

12345678910111213141516
  1. package spacewar;
  2. class C {
  3. public void m() {
  4. foo(12);
  5. foo(14);
  6. }
  7. public void foo(int i) {}
  8. }
  9. aspect X {
  10. before(): call(* foo(..)) {}
  11. }