diff options
author | aclement <aclement> | 2006-10-03 10:32:55 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-03 10:32:55 +0000 |
commit | af08e729f0ca9f49ca139f1099eb2dd197be6ce2 (patch) | |
tree | fd00a52b19cb49ff45b521c640b613e1564178b5 /weaver/testdata | |
parent | a0c198f33de6031842024b3ef36314420e535632 (diff) | |
download | aspectj-af08e729f0ca9f49ca139f1099eb2dd197be6ce2.tar.gz aspectj-af08e729f0ca9f49ca139f1099eb2dd197be6ce2.zip |
fixes for 145442: better line numbers for woven code
Diffstat (limited to 'weaver/testdata')
-rw-r--r-- | weaver/testdata/AroundAllFancyHelloWorld.txt | 20 | ||||
-rw-r--r-- | weaver/testdata/AroundAllHelloWorld.txt | 4 | ||||
-rw-r--r-- | weaver/testdata/TjpAround2HelloWorld.txt | 4 | ||||
-rw-r--r-- | weaver/testdata/TjpAroundHelloWorld.txt | 2 | ||||
-rw-r--r-- | weaver/testdata/TraceJarHello.txt | 2 |
5 files changed, 16 insertions, 16 deletions
diff --git a/weaver/testdata/AroundAllFancyHelloWorld.txt b/weaver/testdata/AroundAllFancyHelloWorld.txt index b7a8d8623..d1f593c67 100644 --- a/weaver/testdata/AroundAllFancyHelloWorld.txt +++ b/weaver/testdata/AroundAllFancyHelloWorld.txt @@ -1,6 +1,6 @@ public abstract class FancyHelloWorld extends java.lang.Object: public void <init>(): - ALOAD_0 // FancyHelloWorld this (line 7) + ALOAD_0 // LFancyHelloWorld; this (line 7) INVOKESPECIAL java.lang.Object.<init> ()V constructor-execution(void FancyHelloWorld.<init>()) | BIPUSH 1 @@ -24,7 +24,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: ALOAD_0 ASTORE 15 method-execution(void FancyHelloWorld.main(java.lang.String[])) - | BIPUSH 1 + | BIPUSH 1 (line 9) | ANEWARRAY java.lang.Object | ASTORE 16 | ALOAD 16 @@ -43,7 +43,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: public static String getName(): method-execution(java.lang.String FancyHelloWorld.getName()) - | BIPUSH 0 + | BIPUSH 0 (line 20) | ANEWARRAY java.lang.Object | ASTORE 10 | NEW FancyHelloWorld$AjcClosure21 @@ -101,7 +101,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: ASTORE_3 (line 9) finally -> E1 | catch java.lang.Exception -> E0 - | | ALOAD_3 // java.io.PrintStream out (line 11) + | | ALOAD_3 // Ljava/io/PrintStream; out (line 11) | | LDC "bye" | | ASTORE 5 | | ASTORE 7 @@ -127,8 +127,8 @@ public abstract class FancyHelloWorld extends java.lang.Object: | | GOTO L0 | catch java.lang.Exception -> E0 | E0: ASTORE 11 (line 12) - | ALOAD_3 // java.io.PrintStream out (line 13) - | ALOAD 11 // java.lang.Exception e + | ALOAD_3 // Ljava/io/PrintStream; out (line 13) + | ALOAD 11 // Ljava/lang/Exception; e | ASTORE 13 | ASTORE 15 | method-call(void java.io.PrintStream.println(java.lang.Object)) @@ -159,7 +159,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: L0: JSR L1 GOTO L2 L1: ASTORE 21 - ALOAD_3 // java.io.PrintStream out (line 15) + ALOAD_3 // Ljava/io/PrintStream; out (line 15) LDC "finally" ASTORE 23 ASTORE 25 @@ -216,7 +216,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: static final String getName_aroundBody20(): ICONST_0 (line 20) ISTORE_0 - ILOAD_0 // int x (line 21) + ILOAD_0 // I x (line 21) LDC "name" ASTORE_2 method-call(int java.lang.String.hashCode()) @@ -235,7 +235,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: | INVOKESTATIC org.aspectj.runtime.internal.Conversions.intValue (Ljava/lang/Object;)I method-call(int java.lang.String.hashCode()) IADD - ISTORE_0 // int x + ISTORE_0 // I x LDC "name" (line 22) ASTORE 6 constructor-call(void java.lang.StringBuffer.<init>(java.lang.String)) @@ -253,7 +253,7 @@ public abstract class FancyHelloWorld extends java.lang.Object: | INVOKESTATIC Aspect.ajc_around (Lorg/aspectj/runtime/internal/AroundClosure;)Ljava/lang/Object; | CHECKCAST java.lang.StringBuffer constructor-call(void java.lang.StringBuffer.<init>(java.lang.String)) - ILOAD_0 // int x + ILOAD_0 // I x ISTORE 10 ASTORE 12 method-call(java.lang.StringBuffer java.lang.StringBuffer.append(int)) diff --git a/weaver/testdata/AroundAllHelloWorld.txt b/weaver/testdata/AroundAllHelloWorld.txt index ea505e316..7adbca1f3 100644 --- a/weaver/testdata/AroundAllHelloWorld.txt +++ b/weaver/testdata/AroundAllHelloWorld.txt @@ -1,6 +1,6 @@ public class HelloWorld extends java.lang.Object: public void <init>(): - ALOAD_0 // HelloWorld this (line 5) + ALOAD_0 // LHelloWorld; this (line 5) INVOKESPECIAL java.lang.Object.<init> ()V constructor-execution(void HelloWorld.<init>()) | BIPUSH 1 @@ -24,7 +24,7 @@ public class HelloWorld extends java.lang.Object: ALOAD_0 ASTORE 5 method-execution(void HelloWorld.main(java.lang.String[])) - | BIPUSH 1 + | BIPUSH 1 (line 8) | ANEWARRAY java.lang.Object | ASTORE 6 | ALOAD 6 diff --git a/weaver/testdata/TjpAround2HelloWorld.txt b/weaver/testdata/TjpAround2HelloWorld.txt index a267a3351..ab1a100f8 100644 --- a/weaver/testdata/TjpAround2HelloWorld.txt +++ b/weaver/testdata/TjpAround2HelloWorld.txt @@ -44,7 +44,7 @@ public class HelloWorld extends java.lang.Object: INVOKESTATIC org.aspectj.runtime.reflect.Factory.makeJP (Lorg/aspectj/lang/JoinPoint$StaticPart;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/aspectj/lang/JoinPoint; ASTORE 10 method-execution(void HelloWorld.main(java.lang.String[])) - | BIPUSH 2 + | BIPUSH 2 (line 8) | ANEWARRAY java.lang.Object | ASTORE 12 | ALOAD 12 @@ -271,7 +271,7 @@ public class HelloWorld extends java.lang.Object: end static final void main_aroundBody12(String[], org.aspectj.lang.JoinPoint) static final void main_aroundBody14(String[], org.aspectj.lang.JoinPoint): - BIPUSH 2 + BIPUSH 2 (line 8) ANEWARRAY java.lang.Object ASTORE_2 ALOAD_2 diff --git a/weaver/testdata/TjpAroundHelloWorld.txt b/weaver/testdata/TjpAroundHelloWorld.txt index 4c8654948..92065df50 100644 --- a/weaver/testdata/TjpAroundHelloWorld.txt +++ b/weaver/testdata/TjpAroundHelloWorld.txt @@ -44,7 +44,7 @@ public class HelloWorld extends java.lang.Object: INVOKESTATIC org.aspectj.runtime.reflect.Factory.makeJP (Lorg/aspectj/lang/JoinPoint$StaticPart;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/aspectj/lang/JoinPoint; ASTORE 8 method-execution(void HelloWorld.main(java.lang.String[])) - | BIPUSH 2 + | BIPUSH 2 (line 8) | ANEWARRAY java.lang.Object | ASTORE 9 | ALOAD 9 diff --git a/weaver/testdata/TraceJarHello.txt b/weaver/testdata/TraceJarHello.txt index 7e313b911..8589536d6 100644 --- a/weaver/testdata/TraceJarHello.txt +++ b/weaver/testdata/TraceJarHello.txt @@ -91,7 +91,7 @@ public class DynamicHelloWorld extends java.lang.Object implements java.io.Seria end static final String doit_aroundBody0(DynamicHelloWorld, String, java.util.List) static final String doit_aroundBody2(DynamicHelloWorld, String, java.util.List): - INVOKESTATIC MyTrace.aspectOf ()LMyTrace; + INVOKESTATIC MyTrace.aspectOf ()LMyTrace; (line 21) ALOAD_0 BIPUSH 3 ANEWARRAY java.lang.Object |