diff options
author | Andy Clement <aclement@pivotal.io> | 2018-04-20 09:45:31 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2018-04-20 09:45:31 -0700 |
commit | 3876a7dfcc371e3be43276c58bb792a09ed23c40 (patch) | |
tree | d29e000aaa7ee58a7575ab4c02331b35dd955273 /docs/dist | |
parent | 836beab108ef4be8b59c1ad9c8596ce959bdf1c7 (diff) | |
download | aspectj-3876a7dfcc371e3be43276c58bb792a09ed23c40.tar.gz aspectj-3876a7dfcc371e3be43276c58bb792a09ed23c40.zip |
Working towards 1.9.1V1_9_1
Diffstat (limited to 'docs/dist')
-rw-r--r-- | docs/dist/doc/README-191.html | 52 | ||||
-rw-r--r-- | docs/dist/doc/index.html | 1 |
2 files changed, 53 insertions, 0 deletions
diff --git a/docs/dist/doc/README-191.html b/docs/dist/doc/README-191.html new file mode 100644 index 000000000..4c891d208 --- /dev/null +++ b/docs/dist/doc/README-191.html @@ -0,0 +1,52 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> +<html> <head> +<title>AspectJ 1.9.1 Readme</title> +<style type="text/css"> +<!-- + P { margin-left: 20px; } + PRE { margin-left: 20px; } + LI { margin-left: 20px; } + H4 { margin-left: 20px; } + H3 { margin-left: 10px; } +--> +</style> +</head> + +<body> +<div align="right"><small> +© Copyright 2018 Contributors. +All rights reserved. +</small></div> +<p>The full list of resolved issues in 1.9.1 is available +<a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.1">here</a></h2>.</p> + +<h1>AspectJ 1.9.1</h1> + +<h4>Java 10 support</h4> +<p>AspectJ has updated to a recent JDT compiler version (commit <tt>#abe06abe4ce1</tt> - 9-Apr-2018). With this update it +now supports Java10. This means you can use the 'var' support. A simple example of combining var with +an aspect:</p> +<p> +<pre><code> +public class Code3 { + public static void main(String []argv) { + var x = "hello"; + System.out.println(x.getClass()); + } +} + +aspect X { + before(): call(* *.getClass()) && target(String) { + System.out.println(thisJoinPointStaticPart); + } +} +</code></pre> +</p> +<p>Available: 1.9.1 available 20-Apr-2018</p> + +<br><br> + + +<!-- ============================== --> +</body> +</html> diff --git a/docs/dist/doc/index.html b/docs/dist/doc/index.html index b06c50bc4..9e556ba73 100644 --- a/docs/dist/doc/index.html +++ b/docs/dist/doc/index.html @@ -138,6 +138,7 @@ <tr> <td>README's </td> <td>Changes and porting guide for AspectJ + <a href="README-191.html">1.9.1</a>, <a href="README-190.html">1.9.0</a>, <a href="README-1811.html">1.8.10</a>, <a href="README-1810.html">1.8.10</a>, |