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.

Foo.java 190B

1234567891011
  1. aspect Foo pertarget(target(Pos)) {
  2. int count = 0;
  3. before (): ( call(* getX(..)) ||
  4. call(* getY(..)) ||
  5. call(* move(..)) ) {
  6. count++;
  7. }
  8. }