summaryrefslogtreecommitdiffstats
path: root/tests/base/test101/Foo.java
blob: 79097078ab017e479f275441c640aca187218ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
aspect Foo pertarget(target(Pos)) {
  int count = 0;

  before (): ( call(* getX(..)) || 
               call(* getY(..)) ||
               call(* move(..))  ) {
      count++;
  }
}