소스 검색

rebuilt internal dependencies

tags/V1_9_0_RC3
Andy Clement 6 년 전
부모
커밋
5e86980fa0

bcel-builder/testsrc/Play.java → bcel-builder/testsrc/org/aspectj/apache/bcel/util/Play.java 파일 보기


BIN
lib/asm/asm-6.0_BETA.renamed.jar 파일 보기


+ 1
- 1
lib/asm/build.xml 파일 보기

@@ -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
lib/bcel/bcel-verifier.jar 파일 보기


BIN
lib/bcel/bcel.jar 파일 보기


BIN
lib/build/build.jar 파일 보기


BIN
lib/test/aspectjrt.jar 파일 보기


+ 3
- 0
tests/bugs190/modules/aaa/com/foo1/C1.java 파일 보기

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

public class C1 {}

+ 3
- 0
tests/bugs190/modules/aaa/module-info.java 파일 보기

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

+ 7
- 0
tests/bugs190/modules/bbb/aaa/bbb/A.java 파일 보기

@@ -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 파일 보기

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

+ 6
- 0
tests/bugs190/modules/ccc/InvokeA.java 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

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

+ 6
- 0
tests/bugs190/modules/ddd/InvokeA.java 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

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

+ 7
- 0
tests/bugs190/modules/eee/Azpect.java 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

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

BIN
tests/bugs190/modules/fff/aspects.jar 파일 보기


BIN
tests/bugs190/modules/fff/demo.jar 파일 보기


+ 7
- 0
tests/bugs190/modules/fff/extra/AnotherAzpect.java 파일 보기

@@ -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 파일 보기

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

BIN
tests/bugs190/modules/fff/newdemo.jar 파일 보기


+ 7
- 0
tests/bugs190/modules/fff/otherpkg/Azpect.java 파일 보기

@@ -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 파일 보기

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

BIN
tests/bugs190/modules/module1/a/b/c/Code.class 파일 보기


BIN
tests/bugs190/modules/module1/module-info.class 파일 보기


Loading…
취소
저장