issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
timestamp[us, tz=UTC]
report_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
2
187
file_content
stringlengths
0
368k
122,347
Bug 122347 Contribution: Memory Efficient Expendable Type Map
Here is a patch for a single file (weaver/src/org/aspectj/weaver/World) that significantly improves the memory footprint of weaves (see details below). I would like help in resolving the one bug that this hit in the AspectJ weaver tests. It does the following: * Keeps Weak References to the values in the expendable map...
resolved wontfix
04067a6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-18T17:59:28Z
2005-12-29T23:46:40Z
weaver/src/org/aspectj/weaver/World.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * 2005 Contributors * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0...
122,347
Bug 122347 Contribution: Memory Efficient Expendable Type Map
Here is a patch for a single file (weaver/src/org/aspectj/weaver/World) that significantly improves the memory footprint of weaves (see details below). I would like help in resolving the one bug that this hit in the AspectJ weaver tests. It does the following: * Keeps Weak References to the values in the expendable map...
resolved wontfix
04067a6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-18T17:59:28Z
2005-12-29T23:46:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distributi...
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
resolved fixed
8676df9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T10:47:29Z
2006-01-22T14:26:40Z
tests/bugs151/pr124803/Test.java
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
resolved fixed
8676df9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T10:47:29Z
2006-01-22T14:26:40Z
tests/bugs151/pr124803/Test2.java
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
resolved fixed
8676df9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T10:47:29Z
2006-01-22T14:26:40Z
tests/bugs151/pr124803/TestAspect.java
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
resolved fixed
8676df9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T10:47:29Z
2006-01-22T14:26:40Z
tests/bugs151/pr124803/TestAspect2.java
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
resolved fixed
8676df9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T10:47:29Z
2006-01-22T14:26:40Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
resolved fixed
8676df9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T10:47:29Z
2006-01-22T14:26:40Z
weaver/src/org/aspectj/weaver/ReferenceType.java
/* ******************************************************************* * Copyright (c) 2002 Contributors * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distribution and is available at * http:...
124,808
Bug 124808 [generics] detecting field-get of field of parameterized type.
Hi, Here is the second generics issue: Java code: ========== public class Test<T extends Integer> { Set<T> ints = new HashSet<T>(); public Set<T> foo() { return ints; } public static void main(String[] args) { Test<Integer> t = new Test<Integer>(); Set<Integer> ints = t.foo(); } } Aspect: ======= public privileged aspe...
resolved fixed
01a8b2e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T14:25:06Z
2006-01-22T17:13:20Z
tests/bugs151/pr124808/Test.java
124,808
Bug 124808 [generics] detecting field-get of field of parameterized type.
Hi, Here is the second generics issue: Java code: ========== public class Test<T extends Integer> { Set<T> ints = new HashSet<T>(); public Set<T> foo() { return ints; } public static void main(String[] args) { Test<Integer> t = new Test<Integer>(); Set<Integer> ints = t.foo(); } } Aspect: ======= public privileged aspe...
resolved fixed
01a8b2e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T14:25:06Z
2006-01-22T17:13:20Z
tests/bugs151/pr124808/TestAspect.java
124,808
Bug 124808 [generics] detecting field-get of field of parameterized type.
Hi, Here is the second generics issue: Java code: ========== public class Test<T extends Integer> { Set<T> ints = new HashSet<T>(); public Set<T> foo() { return ints; } public static void main(String[] args) { Test<Integer> t = new Test<Integer>(); Set<Integer> ints = t.foo(); } } Aspect: ======= public privileged aspe...
resolved fixed
01a8b2e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T14:25:06Z
2006-01-22T17:13:20Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
124,808
Bug 124808 [generics] detecting field-get of field of parameterized type.
Hi, Here is the second generics issue: Java code: ========== public class Test<T extends Integer> { Set<T> ints = new HashSet<T>(); public Set<T> foo() { return ints; } public static void main(String[] args) { Test<Integer> t = new Test<Integer>(); Set<Integer> ints = t.foo(); } } Aspect: ======= public privileged aspe...
resolved fixed
01a8b2e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T14:25:06Z
2006-01-22T17:13:20Z
weaver/src/org/aspectj/weaver/patterns/ExactTypePattern.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
124,808
Bug 124808 [generics] detecting field-get of field of parameterized type.
Hi, Here is the second generics issue: Java code: ========== public class Test<T extends Integer> { Set<T> ints = new HashSet<T>(); public Set<T> foo() { return ints; } public static void main(String[] args) { Test<Integer> t = new Test<Integer>(); Set<Integer> ints = t.foo(); } } Aspect: ======= public privileged aspe...
resolved fixed
01a8b2e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T14:25:06Z
2006-01-22T17:13:20Z
weaver/src/org/aspectj/weaver/patterns/TypePattern.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
124,654
Bug 124654 Capture method annotation in generic aspect does not compile
null
resolved fixed
28f8c69
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T15:21:18Z
2006-01-20T15:13:20Z
tests/bugs151/pr124654/GenericAnnotation.java
124,654
Bug 124654 Capture method annotation in generic aspect does not compile
null
resolved fixed
28f8c69
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T15:21:18Z
2006-01-20T15:13:20Z
tests/bugs151/pr124654/TestSubAspect.java
124,654
Bug 124654 Capture method annotation in generic aspect does not compile
null
resolved fixed
28f8c69
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T15:21:18Z
2006-01-20T15:13:20Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
124,654
Bug 124654 Capture method annotation in generic aspect does not compile
null
resolved fixed
28f8c69
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-23T15:21:18Z
2006-01-20T15:13:20Z
weaver/src/org/aspectj/weaver/patterns/ReferencePointcut.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
124,399
Bug 124399 AJDT AspectJ Internal Compiler Error
In Eclipse 3.1.1 with AJDT 1.3 (the December 20th 2005 release) I got this message in an error dialog: org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.LazyClassGen.getLazyMethodGen(LazyClassGen.java:1216) at org.aspectj.weaver.bcel.LazyClassGen.getLazyMethodGen(LazyClassGen.java:1201) at org.aspectj.weaver.bc...
resolved fixed
d916002
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-24T09:59:17Z
2006-01-18T21:33:20Z
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
124,999
Bug 124999 [generics] Incorrect call to generic inherited method in around advice
null
resolved fixed
a4bd19d
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-24T16:47:42Z
2006-01-24T13:40:00Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AccessForInlineVisitor.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
124,999
Bug 124999 [generics] Incorrect call to generic inherited method in around advice
null
resolved fixed
a4bd19d
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-24T16:47:42Z
2006-01-24T13:40:00Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
125,101
Bug 125101 StackOverFlow in ReferenceType.isAssignableFrom()
Hi. I am weaving two aspects into a jar file "jar-to-jar". ajc 1.5.0 gives me a huge error message (see attachement). Would be great if I could get any recommendations on this. Thanks! Eric
resolved fixed
efb20c5
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-25T17:41:21Z
2006-01-25T00:46:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distributi...
125,295
Bug 125295 fix for bug 58520 caused AJDT test failures
null
resolved fixed
7e40a60
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-26T15:32:48Z
2006-01-26T10:06:40Z
asm/src/org/aspectj/asm/IProgramElement.java
/* ******************************************************************* * Copyright (c) 2003 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distribution and is available at * http...
125,295
Bug 125295 fix for bug 58520 caused AJDT test failures
null
resolved fixed
7e40a60
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-26T15:32:48Z
2006-01-26T10:06:40Z
asm/src/org/aspectj/asm/internal/ProgramElement.java
/* ******************************************************************* * Copyright (c) 2003 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distribution and is available at * http...
125,295
Bug 125295 fix for bug 58520 caused AJDT test failures
null
resolved fixed
7e40a60
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-26T15:32:48Z
2006-01-26T10:06:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmElementFormatter.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distributi...
125,295
Bug 125295 fix for bug 58520 caused AJDT test failures
null
resolved fixed
7e40a60
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-26T15:32:48Z
2006-01-26T10:06:40Z
tests/bugs151/pr125295/pkg/C.java
125,295
Bug 125295 fix for bug 58520 caused AJDT test failures
null
resolved fixed
7e40a60
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-26T15:32:48Z
2006-01-26T10:06:40Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
121,395
Bug 121395 invalid aspectj path throws filenotfoundexception
An invalid aspectj path (missing jar file) throws an filenotfoundexception: java.io.FileNotFoundException at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at org.aspectj.weaver.bcel.BcelWeaver.addAspectsFromJarFile(BcelWeaver.java:202) at org.aspectj.weaver.bcel...
resolved fixed
551b446
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-27T12:30:21Z
2005-12-19T11:00:00Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
121,395
Bug 121395 invalid aspectj path throws filenotfoundexception
An invalid aspectj path (missing jar file) throws an filenotfoundexception: java.io.FileNotFoundException at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at org.aspectj.weaver.bcel.BcelWeaver.addAspectsFromJarFile(BcelWeaver.java:202) at org.aspectj.weaver.bcel...
resolved fixed
551b446
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-27T12:30:21Z
2005-12-19T11:00:00Z
tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
121,395
Bug 121395 invalid aspectj path throws filenotfoundexception
An invalid aspectj path (missing jar file) throws an filenotfoundexception: java.io.FileNotFoundException at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at org.aspectj.weaver.bcel.BcelWeaver.addAspectsFromJarFile(BcelWeaver.java:202) at org.aspectj.weaver.bcel...
resolved fixed
551b446
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-27T12:30:21Z
2005-12-19T11:00:00Z
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
123,901
Bug 123901 NPE in AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference.traverse(QualifiedNameReference.java(Compiled Code)) at org.aspectj.org.eclipse.jdt.internal.compiler.ast....
resolved fixed
693945f
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-29T10:12:10Z
2006-01-15T13:00:00Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AccessForInlineVisitor.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
123,901
Bug 123901 NPE in AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference.traverse(QualifiedNameReference.java(Compiled Code)) at org.aspectj.org.eclipse.jdt.internal.compiler.ast....
resolved fixed
693945f
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-29T10:12:10Z
2006-01-15T13:00:00Z
tests/bugs151/pr123901/A.java
123,901
Bug 123901 NPE in AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference.traverse(QualifiedNameReference.java(Compiled Code)) at org.aspectj.org.eclipse.jdt.internal.compiler.ast....
resolved fixed
693945f
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-29T10:12:10Z
2006-01-15T13:00:00Z
tests/bugs151/pr123901/B.java
123,901
Bug 123901 NPE in AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference.traverse(QualifiedNameReference.java(Compiled Code)) at org.aspectj.org.eclipse.jdt.internal.compiler.ast....
resolved fixed
693945f
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-29T10:12:10Z
2006-01-15T13:00:00Z
tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java
123,901
Bug 123901 NPE in AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference.traverse(QualifiedNameReference.java(Compiled Code)) at org.aspectj.org.eclipse.jdt.internal.compiler.ast....
resolved fixed
693945f
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-29T10:12:10Z
2006-01-15T13:00:00Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
125,657
Bug 125657 NullPointerException from BcelShadow.java:1313
From within Eclipse 3.0 (RAD 6.0.1) I get an error with the (partial) details listed below. My aspect looks like this: public aspect AAwtEventDispatcherThreadProtection { pointcut awtComponentMethod(java.awt.Component component): target(component) && call(* *.*(..)); before(java.awt.Component component): awtComponentMe...
resolved wontfix
4934132
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-30T10:24:49Z
2006-01-30T00:13:20Z
weaver/src/org/aspectj/weaver/bcel/BcelShadow.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distributi...
125,809
Bug 125809 AjTypeDeclaration in the dom shouldn't have the properties of it's subtype AspectDeclaration
The AjTypeDeclaration should not have the properties 'privileged' and 'perClause' which it's subtype AspectDeclaration has. This was shown up whilst building an aspectj for ajdt and a failure in one of the visitor tests.
resolved fixed
eec4990
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-31T12:53:10Z
2006-01-31T12:20:00Z
org.aspectj.ajdt.core/src/org/aspectj/org/eclipse/jdt/core/dom/AjTypeDeclaration.java
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
125,809
Bug 125809 AjTypeDeclaration in the dom shouldn't have the properties of it's subtype AspectDeclaration
The AjTypeDeclaration should not have the properties 'privileged' and 'perClause' which it's subtype AspectDeclaration has. This was shown up whilst building an aspectj for ajdt and a failure in one of the visitor tests.
resolved fixed
eec4990
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-31T12:53:10Z
2006-01-31T12:20:00Z
org.aspectj.ajdt.core/src/org/aspectj/org/eclipse/jdt/core/dom/AspectDeclaration.java
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
125,809
Bug 125809 AjTypeDeclaration in the dom shouldn't have the properties of it's subtype AspectDeclaration
The AjTypeDeclaration should not have the properties 'privileged' and 'perClause' which it's subtype AspectDeclaration has. This was shown up whilst building an aspectj for ajdt and a failure in one of the visitor tests.
resolved fixed
eec4990
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-01-31T12:53:10Z
2006-01-31T12:20:00Z
org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjASTTest.java
/******************************************************************** * Copyright (c) 2006 Contributors. All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * http://...
123,212
Bug 123212 Skip subversion resources when copying files from input to output folders
Exception when compile a project under svn. java.io.FileNotFoundException at java.io.FileOutputStream.open(Native Method) at java.io.FileOutputStream.<init>(FileOutputStream.java:179) at java.io.FileOutputStream.<init>(FileOutputStream.java:131) at org.aspectj.util.FileUtil.makeOutputStream(FileUtil.java:1258) at org.a...
resolved fixed
d856e4f
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-10T07:55:32Z
2006-01-10T08:00:00Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
120,356
Bug 120356 @AJ decl err/warn does not show cross structure view
Perhaps an issue in the ASM struct for DEOW since cross struct. is empty in AJDT , despite error / warning gutter and message is ok.
resolved fixed
f743fb2
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-10T11:25:44Z
2005-12-12T12:20:00Z
tests/bugs151/pr120356/A.java
120,356
Bug 120356 @AJ decl err/warn does not show cross structure view
Perhaps an issue in the ASM struct for DEOW since cross struct. is empty in AJDT , despite error / warning gutter and message is ok.
resolved fixed
f743fb2
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-10T11:25:44Z
2005-12-12T12:20:00Z
tests/bugs151/pr120356/C.java
120,356
Bug 120356 @AJ decl err/warn does not show cross structure view
Perhaps an issue in the ASM struct for DEOW since cross struct. is empty in AJDT , despite error / warning gutter and message is ok.
resolved fixed
f743fb2
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-10T11:25:44Z
2005-12-12T12:20:00Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
120,356
Bug 120356 @AJ decl err/warn does not show cross structure view
Perhaps an issue in the ASM struct for DEOW since cross struct. is empty in AJDT , despite error / warning gutter and message is ok.
resolved fixed
f743fb2
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-10T11:25:44Z
2005-12-12T12:20:00Z
weaver/src/org/aspectj/weaver/bcel/AtAjAttributes.java
/******************************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at ...
119,882
Bug 119882 BCException when deleting a java-source-file
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelWeaver.weave(BcelWeaver.java:1087) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.weave(AjCompilerAdapter.java:300) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.afterCompiling(AjCompilerAdapter.java:178) at org.aspectj.ajdt.internal.compi...
resolved fixed
0b39aa5
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-13T10:51:11Z
2005-12-08T16:40:00Z
tests/multiIncremental/PR119882/base/src/pack/C1.java
119,882
Bug 119882 BCException when deleting a java-source-file
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelWeaver.weave(BcelWeaver.java:1087) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.weave(AjCompilerAdapter.java:300) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.afterCompiling(AjCompilerAdapter.java:178) at org.aspectj.ajdt.internal.compi...
resolved fixed
0b39aa5
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-13T10:51:11Z
2005-12-08T16:40:00Z
tests/multiIncremental/PR119882/base/src/pack/C2.java
119,882
Bug 119882 BCException when deleting a java-source-file
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelWeaver.weave(BcelWeaver.java:1087) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.weave(AjCompilerAdapter.java:300) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.afterCompiling(AjCompilerAdapter.java:178) at org.aspectj.ajdt.internal.compi...
resolved fixed
0b39aa5
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-13T10:51:11Z
2005-12-08T16:40:00Z
tests/multiIncremental/PR119882/inc1/src/pack/C1.java
119,882
Bug 119882 BCException when deleting a java-source-file
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelWeaver.weave(BcelWeaver.java:1087) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.weave(AjCompilerAdapter.java:300) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.afterCompiling(AjCompilerAdapter.java:178) at org.aspectj.ajdt.internal.compi...
resolved fixed
0b39aa5
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-13T10:51:11Z
2005-12-08T16:40:00Z
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
119,882
Bug 119882 BCException when deleting a java-source-file
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelWeaver.weave(BcelWeaver.java:1087) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.weave(AjCompilerAdapter.java:300) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.afterCompiling(AjCompilerAdapter.java:178) at org.aspectj.ajdt.internal.compi...
resolved fixed
0b39aa5
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-13T10:51:11Z
2005-12-08T16:40:00Z
weaver/src/org/aspectj/weaver/bcel/BcelWeaver.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distributi...
121,616
Bug 121616 [@AspectJ]Lacking import for JoinPoint crahes the compiler
null
resolved fixed
d4219e1
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T09:33:38Z
2005-12-20T20:20:00Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/ValidateAtAspectJAnnotationsVisitor.java
/* ******************************************************************* * Copyright (c) 2005 IBM Corporation Ltd * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at ...
121,616
Bug 121616 [@AspectJ]Lacking import for JoinPoint crahes the compiler
null
resolved fixed
d4219e1
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T09:33:38Z
2005-12-20T20:20:00Z
tests/bugs151/pr121616.java
121,616
Bug 121616 [@AspectJ]Lacking import for JoinPoint crahes the compiler
null
resolved fixed
d4219e1
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T09:33:38Z
2005-12-20T20:20:00Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
resolved fixed
e874581
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T16:50:34Z
2005-12-30T05:20:00Z
tests/bugs151/pr122370/moody/AnnotationMoodImplementor.java
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
resolved fixed
e874581
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T16:50:34Z
2005-12-30T05:20:00Z
tests/bugs151/pr122370/moody/AnnotationMoodIndicator.java
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
resolved fixed
e874581
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T16:50:34Z
2005-12-30T05:20:00Z
tests/bugs151/pr122370/moody/MainClass.java
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
resolved fixed
e874581
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T16:50:34Z
2005-12-30T05:20:00Z
tests/bugs151/pr122370/moody/Mood.java
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
resolved fixed
e874581
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T16:50:34Z
2005-12-30T05:20:00Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
resolved fixed
e874581
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-16T16:50:34Z
2005-12-30T05:20:00Z
weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
123,553
Bug 123553 Can't use named pointcut in advice decl. in generic aspect
When defining a generic aspect with a paramterized PC, using that PC in an advice declaration causes an 'incompatible type' error. Example: public abstract aspect GenericAspect<Par1> { abstract pointcut checkpoint(Par1 par1); // advice declaration causes error after(Par1 par1): checkpoint(par1) {// do something} } Usin...
resolved fixed
1f1ace1
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-17T19:41:52Z
2006-01-12T07:13:20Z
tests/bugs151/pr123553/A.java
123,553
Bug 123553 Can't use named pointcut in advice decl. in generic aspect
When defining a generic aspect with a paramterized PC, using that PC in an advice declaration causes an 'incompatible type' error. Example: public abstract aspect GenericAspect<Par1> { abstract pointcut checkpoint(Par1 par1); // advice declaration causes error after(Par1 par1): checkpoint(par1) {// do something} } Usin...
resolved fixed
1f1ace1
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-17T19:41:52Z
2006-01-12T07:13:20Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
128,699
Bug 128699 Incorrect error on "declare" statements
The error associated with the declare construct is incorrect. The current message is: "expected one of error, warning, parents, soft, dominates" dominates should be changed to "precendence" and new annotation related declararions should be mentioned. Here is a suggestion: "expected one of error, warning, parents, soft,...
resolved fixed
f95d2c9
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-20T19:32:59Z
2006-02-20T18:26:40Z
weaver/src/org/aspectj/weaver/patterns/PatternParser.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * 2005 Contributors * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0...
128,744
Bug 128744 LTW doesn't work using JRE1.4 in Eclipse
LTW doesn't work using JRE1.4 in Eclipse now I want to support JRE1.4 when LTW. I defined a aop.xml file in application META-INF path, it works fine using JRE1.4 in command-line, aop.xml file is used when LTW, the command as below: "D:\work\BTM\eclipse 3.1.1\eclipse-SDK-3.1.1-win32\eclipse-1.4.2\jre\bin\java" -classpat...
resolved fixed
7a2087e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:52:36Z
2006-02-21T05:33:20Z
loadtime/src/org/aspectj/weaver/loadtime/ConcreteAspectCodeGen.java
/******************************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available ...
128,744
Bug 128744 LTW doesn't work using JRE1.4 in Eclipse
LTW doesn't work using JRE1.4 in Eclipse now I want to support JRE1.4 when LTW. I defined a aop.xml file in application META-INF path, it works fine using JRE1.4 in command-line, aop.xml file is used when LTW, the command as below: "D:\work\BTM\eclipse 3.1.1\eclipse-SDK-3.1.1-win32\eclipse-1.4.2\jre\bin\java" -classpat...
resolved fixed
7a2087e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:52:36Z
2006-02-21T05:33:20Z
tests/bugs151/pr128744/Hello.java
128,744
Bug 128744 LTW doesn't work using JRE1.4 in Eclipse
LTW doesn't work using JRE1.4 in Eclipse now I want to support JRE1.4 when LTW. I defined a aop.xml file in application META-INF path, it works fine using JRE1.4 in command-line, aop.xml file is used when LTW, the command as below: "D:\work\BTM\eclipse 3.1.1\eclipse-SDK-3.1.1-win32\eclipse-1.4.2\jre\bin\java" -classpat...
resolved fixed
7a2087e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:52:36Z
2006-02-21T05:33:20Z
tests/bugs151/pr128744/World.java
128,744
Bug 128744 LTW doesn't work using JRE1.4 in Eclipse
LTW doesn't work using JRE1.4 in Eclipse now I want to support JRE1.4 when LTW. I defined a aop.xml file in application META-INF path, it works fine using JRE1.4 in command-line, aop.xml file is used when LTW, the command as below: "D:\work\BTM\eclipse 3.1.1\eclipse-SDK-3.1.1-win32\eclipse-1.4.2\jre\bin\java" -classpat...
resolved fixed
7a2087e
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:52:36Z
2006-02-21T05:33:20Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
128,237
Bug 128237 [@AspectJ] NPE on @AJ code with pointcut which contains logical OR operation.
null
resolved fixed
ba42a09
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:55:33Z
2006-02-16T17:13:20Z
tests/bugs151/pr128237.java
128,237
Bug 128237 [@AspectJ] NPE on @AJ code with pointcut which contains logical OR operation.
null
resolved fixed
ba42a09
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:55:33Z
2006-02-16T17:13:20Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
128,237
Bug 128237 [@AspectJ] NPE on @AJ code with pointcut which contains logical OR operation.
null
resolved fixed
ba42a09
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T15:55:33Z
2006-02-16T17:13:20Z
weaver/src/org/aspectj/weaver/bcel/BcelWeaver.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distributi...
128,618
Bug 128618 [incremental] XLint warnings in the wrong place with incremental compilation
The zip file I am about to attach contains two AspectJ project, one depending on the other. If you make a small change to MainClass.java in 'Test Project' and save you will see a strange warning in that class - "advice defined in ras.FFDC has not been applied [Xlint:adviceDidNotMatch]". If you do a full build the warni...
resolved fixed
89d66dc
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:07:04Z
2006-02-20T12:53:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/WeaverMessageHandler.java
/******************************************************************************* * Copyright (c) 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is a...
128,618
Bug 128618 [incremental] XLint warnings in the wrong place with incremental compilation
The zip file I am about to attach contains two AspectJ project, one depending on the other. If you make a small change to MainClass.java in 'Test Project' and save you will see a strange warning in that class - "advice defined in ras.FFDC has not been applied [Xlint:adviceDidNotMatch]". If you do a full build the warni...
resolved fixed
89d66dc
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:07:04Z
2006-02-20T12:53:20Z
tests/multiIncremental/PR128618_2/base/mainpackage/MainClass.java
128,618
Bug 128618 [incremental] XLint warnings in the wrong place with incremental compilation
The zip file I am about to attach contains two AspectJ project, one depending on the other. If you make a small change to MainClass.java in 'Test Project' and save you will see a strange warning in that class - "advice defined in ras.FFDC has not been applied [Xlint:adviceDidNotMatch]". If you do a full build the warni...
resolved fixed
89d66dc
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:07:04Z
2006-02-20T12:53:20Z
tests/multiIncremental/PR128618_2/inc1/mainpackage/MainClass.java
128,618
Bug 128618 [incremental] XLint warnings in the wrong place with incremental compilation
The zip file I am about to attach contains two AspectJ project, one depending on the other. If you make a small change to MainClass.java in 'Test Project' and save you will see a strange warning in that class - "advice defined in ras.FFDC has not been applied [Xlint:adviceDidNotMatch]". If you do a full build the warni...
resolved fixed
89d66dc
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:07:04Z
2006-02-20T12:53:20Z
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
122,742
Bug 122742 [@AspectJ] VerifyError with @AfterThrowing/@AfterReturning and extra JoinPoint argument
If an @AspectJ aspect advises itself using after throwing advice that itself throws an exception running the resulting program causes a VerifyError: java.lang.VerifyError: (class: A, method: stop signature: ()V) catch_type not a subclass of Throwable at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Cl...
resolved fixed
3fa1bdd
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:13:44Z
2006-01-05T11:20:00Z
tests/bugs151/pr122742/AfterReturningTest.java
122,742
Bug 122742 [@AspectJ] VerifyError with @AfterThrowing/@AfterReturning and extra JoinPoint argument
If an @AspectJ aspect advises itself using after throwing advice that itself throws an exception running the resulting program causes a VerifyError: java.lang.VerifyError: (class: A, method: stop signature: ()V) catch_type not a subclass of Throwable at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Cl...
resolved fixed
3fa1bdd
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:13:44Z
2006-01-05T11:20:00Z
tests/bugs151/pr122742/AfterThrowingTest.java
122,742
Bug 122742 [@AspectJ] VerifyError with @AfterThrowing/@AfterReturning and extra JoinPoint argument
If an @AspectJ aspect advises itself using after throwing advice that itself throws an exception running the resulting program causes a VerifyError: java.lang.VerifyError: (class: A, method: stop signature: ()V) catch_type not a subclass of Throwable at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Cl...
resolved fixed
3fa1bdd
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:13:44Z
2006-01-05T11:20:00Z
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
/******************************************************************************* * Copyright (c) 2006 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
122,742
Bug 122742 [@AspectJ] VerifyError with @AfterThrowing/@AfterReturning and extra JoinPoint argument
If an @AspectJ aspect advises itself using after throwing advice that itself throws an exception running the resulting program causes a VerifyError: java.lang.VerifyError: (class: A, method: stop signature: ()V) catch_type not a subclass of Throwable at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Cl...
resolved fixed
3fa1bdd
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-21T16:13:44Z
2006-01-05T11:20:00Z
weaver/src/org/aspectj/weaver/Advice.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
resolved fixed
cafdecb
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-23T11:34:16Z
2005-12-17T09:00:00Z
weaver/src/org/aspectj/weaver/ltw/LTWWorld.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
resolved fixed
cafdecb
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-23T11:34:16Z
2005-12-17T09:00:00Z
weaver/src/org/aspectj/weaver/reflect/IReflectionWorld.java
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
resolved fixed
cafdecb
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-23T11:34:16Z
2005-12-17T09:00:00Z
weaver/src/org/aspectj/weaver/reflect/ReflectionBasedReferenceTypeDelegateFactory.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
resolved fixed
cafdecb
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-23T11:34:16Z
2005-12-17T09:00:00Z
weaver/src/org/aspectj/weaver/reflect/ReflectionShadow.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
resolved fixed
cafdecb
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-23T11:34:16Z
2005-12-17T09:00:00Z
weaver/src/org/aspectj/weaver/reflect/ReflectionWorld.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
resolved fixed
cafdecb
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-23T11:34:16Z
2005-12-17T09:00:00Z
weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
129,298
Bug 129298 Contribution: Remove Memory Consuming Declared Signature
The code for weaver.Member#getDeclaredSignature() is never used in the weaver. My memory analysis showed this can pin several megabytes of memory in a large system. This patch removes it. YAGNI :-)
resolved fixed
a116142
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-24T12:11:15Z
2006-02-24T08:33:20Z
weaver/src/org/aspectj/weaver/JoinPointSignature.java
/* ******************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available at * htt...
129,298
Bug 129298 Contribution: Remove Memory Consuming Declared Signature
The code for weaver.Member#getDeclaredSignature() is never used in the weaver. My memory analysis showed this can pin several megabytes of memory in a large system. This patch removes it. YAGNI :-)
resolved fixed
a116142
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-24T12:11:15Z
2006-02-24T08:33:20Z
weaver/src/org/aspectj/weaver/Member.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * 2005 Contributors * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0...
129,298
Bug 129298 Contribution: Remove Memory Consuming Declared Signature
The code for weaver.Member#getDeclaredSignature() is never used in the weaver. My memory analysis showed this can pin several megabytes of memory in a large system. This patch removes it. YAGNI :-)
resolved fixed
a116142
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-02-24T12:11:15Z
2006-02-24T08:33:20Z
weaver/src/org/aspectj/weaver/MemberImpl.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
ajde/testsrc/org/aspectj/ajde/BuildConfigurationTests.java
/********************************************************************** Copyright (c) 2003 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/core/AspectJCore.java
/******************************************************************************* * Copyright (c) 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is a...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java
/******************************************************************************* * Copyright (c) 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is a...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjCompilerOptions.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/BcweaverJarMaker.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distrib...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/core/builder/AjCompilerOptionsTest.java
/******************************************************************************* * Copyright (c) 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is a...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java
/* ******************************************************************* * Copyright (c) 2001-2001 Xerox Corporation, * 2002 Palo Alto Research Center, Incorporated (PARC) * 2003-2004 Contributors. * All rights reserved. * This program and the accompanying materials are made available ...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
taskdefs/testsrc/org/aspectj/tools/ant/taskdefs/AjcTaskTest.java
/* ******************************************************************* * Copyright (c) 1999-2001 Xerox Corporation, * 2002 Palo Alto Research Center, Incorporated (PARC) * 2003 Contributors. * 2005 Contributors * All rights reserved. * This program and the accompanying ...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java
/* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC), * 2003 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1....
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java
/******************************************************************************* * Copyright (c) 2004 IBM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://ww...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
tests/src/org/aspectj/systemtest/ajc150/ataspectj/AtAjLTWTests.java
/******************************************************************************* * Copyright (c) 2005 Contributors. * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Eclipse Public License v1.0 * which accompanies this distribution and is available ...
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
verified fixed
b225911
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-05T17:00:04Z
2006-03-03T12:46:40Z
tests/src/org/aspectj/systemtest/inpath/InPathTests.java
/* ******************************************************************* * Copyright (c) 2004 IBM Corporation * All rights reserved. * This program and the accompanying materials are made available * under the terms of the Common Public License v1.0 * which accompanies this distribution and is available at * http:/...
101,411
Bug 101411 SerialVersionUID handling
from emails - needs a decision --------------- Hi Andy is there a way for the weaver to add to weaved classes the serial ver uid field based on the pre-weaved bytecode computation. Right now it issues lint warning when a Serializable class without serial ver uid is encountered and due to evil #75442 this is very annoyi...
resolved fixed
6e6658a
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2006-03-09T17:24:19Z
2005-06-23T07:00:00Z
bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java
package org.aspectj.apache.bcel.generic; /* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modi...