aboutsummaryrefslogtreecommitdiffstats
path: root/docs/progGuideDB/semantics.xml
diff options
context:
space:
mode:
authorehilsdal <ehilsdal>2004-01-29 15:21:59 +0000
committerehilsdal <ehilsdal>2004-01-29 15:21:59 +0000
commite5958d3ca1b3a8219701791b8c0f99dd86bc9e29 (patch)
treec0a93f2206caeb12b5559f8b0fb3f8203bf9dd57 /docs/progGuideDB/semantics.xml
parenta6dec8761f92f433170236156eba5e319d7ef5b7 (diff)
downloadaspectj-e5958d3ca1b3a8219701791b8c0f99dd86bc9e29.tar.gz
aspectj-e5958d3ca1b3a8219701791b8c0f99dd86bc9e29.zip
Fix for Bugzilla Bug 42668
effect of an after returning type incompatible with a join point return type
Diffstat (limited to 'docs/progGuideDB/semantics.xml')
-rw-r--r--docs/progGuideDB/semantics.xml15
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/progGuideDB/semantics.xml b/docs/progGuideDB/semantics.xml
index 2fe8f7444..379cb1cb2 100644
--- a/docs/progGuideDB/semantics.xml
+++ b/docs/progGuideDB/semantics.xml
@@ -1464,14 +1464,13 @@
<para>
A value is of the appropriate type if it would be assignable to
- a variable of that type, in the Java sense.
- <literal>byte</literal>, <literal>short</literal>,
- <literal>char</literal> and <literal>int</literal> are
- assignable to each other, an <literal>int</literal> is
- assignable to a <literal>float</literal> parameter,
- <literal>boolean</literal> values are only assignable to
- <literal>boolean</literal> parameters, and reference types work
- by instanceof.
+ a variable of that type, in the Java sense. That is, a
+ <literal>byte</literal> value is assignable to a
+ <literal>short</literal> parameter but not vice-versa, an
+ <literal>int</literal> is assignable to a
+ <literal>float</literal> parameter, <literal>boolean</literal>
+ values are only assignable to <literal>boolean</literal>
+ parameters, and reference types work by instanceof.
</para>
<para>