aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1611
diff options
context:
space:
mode:
authoraclement <aclement>2011-02-08 16:22:42 +0000
committeraclement <aclement>2011-02-08 16:22:42 +0000
commit09af5acb0c35cfcc90b85bb465313c7903d32c20 (patch)
treed4c822c8c14378b5d9946e5b94587804fc9de1fa /tests/bugs1611
parent5648105b8450a0f0121bd49b65eae21eb135398f (diff)
downloadaspectj-09af5acb0c35cfcc90b85bb465313c7903d32c20.tar.gz
aspectj-09af5acb0c35cfcc90b85bb465313c7903d32c20.zip
336471: makeEJSP
Diffstat (limited to 'tests/bugs1611')
-rw-r--r--tests/bugs1611/pr336471/Tester.aj25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/bugs1611/pr336471/Tester.aj b/tests/bugs1611/pr336471/Tester.aj
new file mode 100644
index 000000000..4603a4d62
--- /dev/null
+++ b/tests/bugs1611/pr336471/Tester.aj
@@ -0,0 +1,25 @@
+
+aspect Tester {
+ before(): call(* Foo.*(..)) {
+ System.out.println(thisEnclosingJoinPointStaticPart);
+ }
+ public static void main(String[] args) {
+ new Foo().run();
+ }
+}
+
+class Foo {
+ int i = 5;
+ public void run() {
+ bar("abc");
+ }
+
+ public void bar(String s) {
+ System.out.println("hello");
+ i = 4;
+ }
+}
+
+class MyException extends Exception {
+
+}