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.

R.java 189B

12345678910111213
  1. aspect R pertypewithin(P) {
  2. int ctr = 0;
  3. after(): execution(* runB(..)) {
  4. ctr=ctr+1;
  5. }
  6. after(): execution(* main(..)) {
  7. System.err.println("R reporting "+ctr);
  8. }
  9. }