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.

Test2.java 111B

12345678910
  1. privileged
  2. aspect Test {
  3. before(): call(* m(..)) {}
  4. public void B.getFoo() {
  5. m();
  6. }
  7. }