aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-04 13:13:43 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-06 10:09:11 +0100
commit536b969a132793db66d733b65833a8df7856b158 (patch)
tree900426338a0c60ee76f4f4acd3e07dc6e9469bfe
parent32eccc458582cf8298047f6ac3ba1936d4c02854 (diff)
downloadaspectj-536b969a132793db66d733b65833a8df7856b158.tar.gz
aspectj-536b969a132793db66d733b65833a8df7856b158.zip
Adjust image links in compiler-weaver.adoc
After move in previous commit, now the paths have been fixed, too. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
-rw-r--r--docs/developer/compiler-weaver.adoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/developer/compiler-weaver.adoc b/docs/developer/compiler-weaver.adoc
index 817656e35..a98061b06 100644
--- a/docs/developer/compiler-weaver.adoc
+++ b/docs/developer/compiler-weaver.adoc
@@ -21,7 +21,7 @@ for AspectJ-1.2.
runtime and must be redistributed with any system built using AspectJ.
This module has no external dependencies and produces a tiny ~30KB jar.
-image:overview.gif[image]
+image:images/overview.gif[image]
The AspectJ compiler accepts both AspectJ bytecode and source code and
produces pure Java bytecode as a result. Internally it has two stages.
@@ -94,7 +94,7 @@ aspect A {
When parsed, this program will produce the following tree.
-image:top-tree.gif[image]
+image:images/top-tree.gif[image]
==== PointcutDeclaration processing
@@ -105,7 +105,7 @@ Let's look more closely at the pointcut declaration:
pointcut entries(Main o): execution(void doit()) && this(o);
....
-image:pointcut-dec.gif[image]
+image:images/pointcut-dec.gif[image]
The pointcut declaration is implemented as a subtype of a method
declaration. The actual pointcut is parsed by the weaver module. This
@@ -131,7 +131,7 @@ postParse, the selector is filled in and several additional arguments
are added for the special thisJoinPoint forms that could be used in the
body.
-image:advice-dec.gif[image]
+image:images/advice-dec.gif[image]
At this point the statements field which will hold the body of the
advice is still null. This field is not filled in until the second stage
@@ -142,7 +142,7 @@ prelude to generating the classfile.
The main classes in this module are shown in the following diagram:
-image:ajdt-uml.gif[image]
+image:images/ajdt-uml.gif[image]
=== Weaving back-end (weaver)