summaryrefslogtreecommitdiffstats
path: root/ajde/testdata/InpathTest/src2/Aspect.java
blob: c709948700be24f971cd8eb39cc6ce2fe2c460a2 (plain)
1
2
3
4
5
6
7
public aspect Aspect {
  pointcut sayCalls(): call(* say(..));

  before(): sayCalls() {
    System.err.println("Before say()");
  }
}