diff options
Diffstat (limited to 'tests/incremental/structureModel')
-rw-r--r-- | tests/incremental/structureModel/changes/X.20.aj | 4 | ||||
-rw-r--r-- | tests/incremental/structureModel/src/X.aj | 3 | ||||
-rw-r--r-- | tests/incremental/structureModel/src/Y.aj | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/tests/incremental/structureModel/changes/X.20.aj b/tests/incremental/structureModel/changes/X.20.aj new file mode 100644 index 000000000..465c3eda3 --- /dev/null +++ b/tests/incremental/structureModel/changes/X.20.aj @@ -0,0 +1,4 @@ +public aspect X { + before(): Y.p() {} + +} diff --git a/tests/incremental/structureModel/src/X.aj b/tests/incremental/structureModel/src/X.aj new file mode 100644 index 000000000..d8596d118 --- /dev/null +++ b/tests/incremental/structureModel/src/X.aj @@ -0,0 +1,3 @@ +public aspect X { + before(): Y.p() {} +} diff --git a/tests/incremental/structureModel/src/Y.aj b/tests/incremental/structureModel/src/Y.aj new file mode 100644 index 000000000..63d5b1794 --- /dev/null +++ b/tests/incremental/structureModel/src/Y.aj @@ -0,0 +1,3 @@ +public aspect Y { + pointcut p(): call(* *(..)); +} |