<compile files="SourceLocationWithinExpr.java"/>
<run class="SourceLocationWithinExpr"/>
</ajc-test>
+
+
+ <ajc-test dir="new" pr="885" keywords="knownLimitation"
+ comment="this behaves differently in 1.3 from 1.4 for unknown reasons, merge with above when resolved"
+ title="source locations within expressions (hard case of constructor start)">
+ <compile files="SourceLocationWithinExprHard.java"/>
+ <run class="SourceLocationWithinExprHard"/>
+ </ajc-test>
<ajc-test dir="new" pr="888"
title="crashes given method in declared method">
<compile files="Trg.java,Asp.java"/>
<run class="Trg"/>
</ajc-test>
+
+ <ajc-test dir="new"
+ comment="this is a pureJava test, but we always want to run it"
+ title="arrays via Class.forName()">
+ <compile files="ClassForName.java"/>
+ <run class="ClassForName"/>
+ </ajc-test>
</suite>
--- /dev/null
+
+import org.aspectj.testing.Tester;
+import java.util.*;
+
+public class ClassForName {
+ public static void main(String[] args) throws ClassNotFoundException {
+ Class c1 = String[].class;
+ Class c2 = Class.forName("[Ljava.lang.String;");
+ Class c3 = ClassForName.class.getClassLoader().loadClass("[Ljava.lang.String;");
+
+ Tester.checkEqual(c1, c2, "classes c1, c2");
+ Tester.checkEqual(c2, c3, "classes c2, c3");
+
+ Tester.checkEqual(c1.getComponentType(), String.class, "component");
+ }
+}
+
+aspect A {
+ before(): execution(void main(..)) {
+ System.out.println(thisJoinPointStaticPart);
+ }
+}
/** @testcase PR#885 call source locations within expression */
public class SourceLocationWithinExpr {
public static void main (String[] args) {
- new // 9*
- C() // 10
+ new C() // 9*
+ // 10
. // 11
getD() // 12*
. // 13
--- /dev/null
+
+import org.aspectj.testing.Tester;
+import org.aspectj.lang.*;
+import org.aspectj.lang.reflect.*;
+
+/** @testcase PR#885 call source locations within expression */
+public class SourceLocationWithinExprHard {
+ public static void main (String[] args) {
+ new // 9*
+ C() // 10
+ . // 11
+ getD() // 12*
+ . // 13
+ getE() // 14*
+ . // 15
+ getF() // 16*
+ ;
+ Tester.expectEvent("setup");
+ Tester.checkAllEvents();
+ }
+}
+class C { D getD() { return new D(); } }
+class D { E getE() { return new E(); } }
+class E { F getF() { return new F(); } }
+class F { }
+
+aspect A {
+ private static final String SEP = " - ";
+ static {
+ // using qualifying expr?
+ Tester.expectEvent("C()" + SEP + "9");
+ Tester.expectEvent("getD()" + SEP + "12");
+ Tester.expectEvent("getE()" + SEP + "14");
+ Tester.expectEvent("getF()" + SEP + "16");
+ Tester.event("setup");
+ }
+ pointcut filter() : withincode(static void SourceLocationWithinExpr.main(String[]));
+ before() : filter() && call(C.new()) { signal("C()", thisJoinPoint); }
+ before() : filter() && call(D C.getD()) { signal("getD()", thisJoinPoint); }
+ before() : filter() && call(E D.getE()) { signal("getE()", thisJoinPoint); }
+ before() : filter() && call(F E.getF()) { signal("getF()", thisJoinPoint); }
+ void signal(String prefix, JoinPoint jp) {
+ SourceLocation sl = jp.getSourceLocation();
+ System.out.println(prefix + SEP + sl.getLine());
+ Tester.event(prefix + SEP + sl.getLine());
+ }
+}