Procházet zdrojové kódy

rebuilt internal dependencies

tags/V1_9_0_RC3
Andy Clement před 6 roky
rodič
revize
5e86980fa0
29 změnil soubory, kde provedl 89 přidání a 1 odebrání
  1. 0
    0
      bcel-builder/testsrc/org/aspectj/apache/bcel/util/Play.java
  2. binární
      lib/asm/asm-6.0_BETA.renamed.jar
  3. 1
    1
      lib/asm/build.xml
  4. binární
      lib/bcel/bcel-verifier.jar
  5. binární
      lib/bcel/bcel.jar
  6. binární
      lib/build/build.jar
  7. binární
      lib/test/aspectjrt.jar
  8. 3
    0
      tests/bugs190/modules/aaa/com/foo1/C1.java
  9. 3
    0
      tests/bugs190/modules/aaa/module-info.java
  10. 7
    0
      tests/bugs190/modules/bbb/aaa/bbb/A.java
  11. 3
    0
      tests/bugs190/modules/bbb/module-info.java
  12. 6
    0
      tests/bugs190/modules/ccc/InvokeA.java
  13. 7
    0
      tests/bugs190/modules/ccc/aaa/bbb/A.java
  14. 3
    0
      tests/bugs190/modules/ccc/module-info.java
  15. 6
    0
      tests/bugs190/modules/ddd/InvokeA.java
  16. 7
    0
      tests/bugs190/modules/ddd/aaa/bbb/A.java
  17. 2
    0
      tests/bugs190/modules/ddd/module-info.java
  18. 7
    0
      tests/bugs190/modules/eee/Azpect.java
  19. 7
    0
      tests/bugs190/modules/eee/aaa/bbb/A.java
  20. 3
    0
      tests/bugs190/modules/eee/module-info.java
  21. binární
      tests/bugs190/modules/fff/aspects.jar
  22. binární
      tests/bugs190/modules/fff/demo.jar
  23. 7
    0
      tests/bugs190/modules/fff/extra/AnotherAzpect.java
  24. 4
    0
      tests/bugs190/modules/fff/module-info.java
  25. binární
      tests/bugs190/modules/fff/newdemo.jar
  26. 7
    0
      tests/bugs190/modules/fff/otherpkg/Azpect.java
  27. 6
    0
      tests/bugs190/modules/fff/pkg/Demo.java
  28. binární
      tests/bugs190/modules/module1/a/b/c/Code.class
  29. binární
      tests/bugs190/modules/module1/module-info.class

bcel-builder/testsrc/Play.java → bcel-builder/testsrc/org/aspectj/apache/bcel/util/Play.java Zobrazit soubor


binární
lib/asm/asm-6.0_BETA.renamed.jar Zobrazit soubor


+ 1
- 1
lib/asm/build.xml Zobrazit soubor

@@ -5,7 +5,7 @@

<target name="package" description="Jarjar asm-5.0.4.jar and prefix package name with aj">
<jarjar destfile="asm-6.0_BETA.renamed.jar">
<zipfileset src="asm-6.0_BETA.jar"/>
<zipfileset src="asm-6.0_BETA.jar" excludes="module-info.class"/>
<rule pattern="org.objectweb.asm.**" result="aj.org.objectweb.asm.@1"/>
</jarjar>
</target>

binární
lib/bcel/bcel-verifier.jar Zobrazit soubor


binární
lib/bcel/bcel.jar Zobrazit soubor


binární
lib/build/build.jar Zobrazit soubor


binární
lib/test/aspectjrt.jar Zobrazit soubor


+ 3
- 0
tests/bugs190/modules/aaa/com/foo1/C1.java Zobrazit soubor

@@ -0,0 +1,3 @@
package com.foo1;

public class C1 {}

+ 3
- 0
tests/bugs190/modules/aaa/module-info.java Zobrazit soubor

@@ -0,0 +1,3 @@
module e.f.g {
exports com.foo1;
}

+ 7
- 0
tests/bugs190/modules/bbb/aaa/bbb/A.java Zobrazit soubor

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 3
- 0
tests/bugs190/modules/bbb/module-info.java Zobrazit soubor

@@ -0,0 +1,3 @@
module my.module {
exports aaa.bbb;
}

+ 6
- 0
tests/bugs190/modules/ccc/InvokeA.java Zobrazit soubor

@@ -0,0 +1,6 @@
import aaa.bbb.A;
public class InvokeA {
public static void main(String[] argv) {
A.main(argv);
}
}

+ 7
- 0
tests/bugs190/modules/ccc/aaa/bbb/A.java Zobrazit soubor

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 3
- 0
tests/bugs190/modules/ccc/module-info.java Zobrazit soubor

@@ -0,0 +1,3 @@
module my.module {
exports aaa.bbb;
}

+ 6
- 0
tests/bugs190/modules/ddd/InvokeA.java Zobrazit soubor

@@ -0,0 +1,6 @@
import aaa.bbb.A;
public class InvokeA {
public static void main(String[] argv) {
A.main(argv);
}
}

+ 7
- 0
tests/bugs190/modules/ddd/aaa/bbb/A.java Zobrazit soubor

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 2
- 0
tests/bugs190/modules/ddd/module-info.java Zobrazit soubor

@@ -0,0 +1,2 @@
module my.module {
}

+ 7
- 0
tests/bugs190/modules/eee/Azpect.java Zobrazit soubor

@@ -0,0 +1,7 @@
package aspects;

public aspect Azpect {
before(): execution(* main(..)) {
System.out.println("Azpect running");
}
}

+ 7
- 0
tests/bugs190/modules/eee/aaa/bbb/A.java Zobrazit soubor

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 3
- 0
tests/bugs190/modules/eee/module-info.java Zobrazit soubor

@@ -0,0 +1,3 @@
module my.module {
exports aaa.bbb;
}

binární
tests/bugs190/modules/fff/aspects.jar Zobrazit soubor


binární
tests/bugs190/modules/fff/demo.jar Zobrazit soubor


+ 7
- 0
tests/bugs190/modules/fff/extra/AnotherAzpect.java Zobrazit soubor

@@ -0,0 +1,7 @@
package extra;

public aspect AnotherAzpect {
before(): execution(* *(..)) && !within(*Azpect) {
System.out.println("AnotherAzpect running");
}
}

+ 4
- 0
tests/bugs190/modules/fff/module-info.java Zobrazit soubor

@@ -0,0 +1,4 @@
module demo {
exports pkg;
requires org.aspectj.runtime;
}

binární
tests/bugs190/modules/fff/newdemo.jar Zobrazit soubor


+ 7
- 0
tests/bugs190/modules/fff/otherpkg/Azpect.java Zobrazit soubor

@@ -0,0 +1,7 @@
package otherpkg;

public aspect Azpect {
before(): execution(* *(..)) && !within(Azpect) {
System.out.println("Azpect running");
}
}

+ 6
- 0
tests/bugs190/modules/fff/pkg/Demo.java Zobrazit soubor

@@ -0,0 +1,6 @@
package pkg;
public class Demo {
public static void main(String[] argv) {
System.out.println("Demo running");
}
}

binární
tests/bugs190/modules/module1/a/b/c/Code.class Zobrazit soubor


binární
tests/bugs190/modules/module1/module-info.class Zobrazit soubor


Načítá se…
Zrušit
Uložit