summaryrefslogtreecommitdiffstats
path: root/tests/base/test101/Bar.java
blob: 99b516a408fb1ba4ef284184cf7b64a0bb2dfd63 (plain)
1
2
3
4
5
6
7
8
9
10
11
aspect Bar {
  static int count = 0;
  
   before (): target(Pos) && 
                    ( call(* getX(..)) || 
                      call(* getY(..)) ||
                      call(* move(..))  ) {
      count++;
  }
}