diff options
author | aclement <aclement> | 2005-04-13 11:25:12 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-04-13 11:25:12 +0000 |
commit | 60edf48d3cac5e64a4f8d35345794ef89822ea9f (patch) | |
tree | cc6499414ccd39e4b4e2de06b578d921f4f280b9 /tests/incremental | |
parent | 42702fcbbe94f287ccd2028291954947c46c0c47 (diff) | |
download | aspectj-60edf48d3cac5e64a4f8d35345794ef89822ea9f.tar.gz aspectj-60edf48d3cac5e64a4f8d35345794ef89822ea9f.zip |
Test programs for pr90806
Diffstat (limited to 'tests/incremental')
-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(* *(..)); +} |