diff options
author | aclement <aclement> | 2011-02-08 16:22:42 +0000 |
---|---|---|
committer | aclement <aclement> | 2011-02-08 16:22:42 +0000 |
commit | 09af5acb0c35cfcc90b85bb465313c7903d32c20 (patch) | |
tree | d4c822c8c14378b5d9946e5b94587804fc9de1fa /tests/bugs1611 | |
parent | 5648105b8450a0f0121bd49b65eae21eb135398f (diff) | |
download | aspectj-09af5acb0c35cfcc90b85bb465313c7903d32c20.tar.gz aspectj-09af5acb0c35cfcc90b85bb465313c7903d32c20.zip |
336471: makeEJSP
Diffstat (limited to 'tests/bugs1611')
-rw-r--r-- | tests/bugs1611/pr336471/Tester.aj | 25 |
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 { + +} |