aboutsummaryrefslogtreecommitdiffstats
path: root/weaver/testdata/PerSingletonField.txt
diff options
context:
space:
mode:
authorwisberg <wisberg>2002-12-16 17:58:19 +0000
committerwisberg <wisberg>2002-12-16 17:58:19 +0000
commitd842c4f1139629c1f062b74ba818d233b2c31043 (patch)
tree842d3871620bc0eb60edcd95e55804d67e0f61fa /weaver/testdata/PerSingletonField.txt
parent3ce247199704eae6b2c92c6e38c69584e3250c52 (diff)
downloadaspectj-d842c4f1139629c1f062b74ba818d233b2c31043.tar.gz
aspectj-d842c4f1139629c1f062b74ba818d233b2c31043.zip
initial version
Diffstat (limited to 'weaver/testdata/PerSingletonField.txt')
-rw-r--r--weaver/testdata/PerSingletonField.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/weaver/testdata/PerSingletonField.txt b/weaver/testdata/PerSingletonField.txt
new file mode 100644
index 000000000..4837c6569
--- /dev/null
+++ b/weaver/testdata/PerSingletonField.txt
@@ -0,0 +1,22 @@
+public class HelloWorld extends java.lang.Object:
+ public void <init>():
+ ALOAD_0 // HelloWorld this (line 5)
+ INVOKESPECIAL java.lang.Object.<init> ()V
+ RETURN
+ end public void <init>()
+
+ public static void main(String[]):
+ GETSTATIC java.lang.System.out Ljava/io/PrintStream; (line 8)
+ LDC "hello world" (line 9)
+ INVOKEVIRTUAL java.io.PrintStream.println (Ljava/lang/String;)V
+ RETURN (line 11)
+ end public static void main(String[])
+
+ static void <clinit>():
+ NEW HelloWorld
+ DUP
+ INVOKESPECIAL HelloWorld.<init> ()V
+ PUTSTATIC HelloWorld.ajc$perSingletonInstance LHelloWorld;
+ RETURN
+ end static void <clinit>()
+end public class HelloWorld