issue_id
int64
2.04k
425k
title
stringlengths
9
251
body
stringlengths
4
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
23
187
chunk_content
stringlengths
1
22k
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
if (jc == null) { if (typeDelegateResolvers != null) { for (TypeDelegateResolver tdr : typeDelegateResolvers) { ReferenceTypeDelegate delegate = tdr.getDelegate(ty); if (delegate != null) { return delegate; } } } return null; } else { return buildBcelDelegate(ty, jc, false...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
trace.error("Unable to find class '" + name + "' in repository", e); } return null; } } ClassPathManager.ClassFile file = null; try { file = classPath.find(UnresolvedType.forName(name)); if (file == null) { return null; } ClassParser parser = new ClassParser(file.getInputStream(), file....
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
if (!jc.getClassName().equals(classname)) { throw new RuntimeException(jc.getClassName() + "!=" + classname); } String signature = UnresolvedType.forName(jc.getClassName()).getSignature(); ResolvedType fromTheMap = typeMap.get(signature); if (fromTheMap != null && !(fromTheMap instanceof ReferenceType)) { ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} return ret; } public BcelObjectType addSourceObjectType(String classname, byte[] bytes, boolean artificial) { BcelObjectType ret = null; String signature = UnresolvedType.forName(classname).getSignature(); ResolvedType fromTheMap = typeMap.get(signature); if (fromTheMap != null && !(fromTheMap instanceof ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} } else { Object o = nameTypeX.getDelegate(); if (!(o instanceof BcelObjectType)) { throw new IllegalStateException("For " + classname + " should be BcelObjectType, but is " + o.getClass()); } ret = (BcelObjectType) o; if (ret.isArtificial() || ret.isExposedToWeaver()) { ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} public Member makeJoinPointSignatureFromMethod(LazyMethodGen mg, MemberKind kind) { Member ret = mg.getMemberView(); if (ret == null) { int mods = mg.getAccessFlags(); if (mg.getEnclosingClass().isInterface()) { mods |= Modifier.INTERFACE; } return new ResolvedMemberImpl(kind, UnresolvedType.forN...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} else if (i instanceof MULTIANEWARRAY) { MULTIANEWARRAY arrayInstruction = (MULTIANEWARRAY) i; UnresolvedType ut = null; short dimensions = arrayInstruction.getDimensions(); ObjectType ot = arrayInstruction.getLoadClassType(cpg); if (ot != null) { ut = fromBcel(ot); ut = UnresolvedType.makeArray...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
String declaring = ii.getClassName(cpg); UnresolvedType declaringType = null; String signature = ii.getSignature(cpg); int modifier = (ii instanceof INVOKEINTERFACE) ? Modifier.INTERFACE : (ii.opcode == Constants.INVOKESTATIC) ? Modifier.STATIC : (ii.opcode == Constants.INVOKESPECIAL && !name .equals("<...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} return MemberImpl.method(declaringType, modifier, name, signature); } @Override public String toString() { StringBuffer buf = new StringBuffer(); buf.append("BcelWorld("); buf.append(")"); return buf.toString(); } /** * Retrieve a bcel delegate for an aspect - this will return NULL if the delegate...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
classPath.closeArchives(); typeMap.report(); typeMap.demote(true); } public JavaClass findClass(String className) { return lookupJavaClass(classPath, className); } public JavaClass loadClass(String className) throws ClassNotFoundException { return lookupJavaClass(classPath, className); } public void ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
*/ @Override public void validateType(UnresolvedType type) { ResolvedType result = typeMap.get(type.getSignature()); if (result == null) { return; } if (!result.isExposedToWeaver()) { return; } result.ensureConsistent(); } /** * Apply a single declare parents - re...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
BcelObjectType classType = BcelWorld.getBcelObjectType(onType); for (ResolvedType newParent : newParents) { onType.addParent(newParent); ResolvedTypeMunger newParentMunger = new NewParentTypeMunger(newParent, p.getDeclaringType()); newParentMunger.setSourceLocation(p.getSourc...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
if (isOK) { didSomething = true; ResolvedTypeMunger newAnnotationTM = new AnnotationOnTypeMunger(annoX); newAnnotationTM.setSourceLocation(decA.getSourceLocation()); onType.addInterTypeMunger(new BcelTypeMunger(newAnnotationTM, decA.getAspect().resolve(this)), false); decA.copyAnnotationTo(onType); ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} /** * Checks for an @target() on the annotation and if found ensures it allows the annotation to be attached to the target type * that matched. */ private boolean checkTargetOK(DeclareAnnotation decA, ResolvedType onType, AnnotationAJ annoX) { if (annoX.specifiesTarget()) { if ((onType.isAnnotation() &...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
boolean typeChanged = applyDeclareParents(decp, onType); if (typeChanged) { aParentChangeOccurred = true; } else { if (!decp.getChild().isStarAnnotation()) { decpToRepeat.add(decp); } } } for (DeclareAnnotation decA : getCrosscuttingMembersSet().getDeclareAnnotationOnTypes()) { ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} else { decpToRepeatNextTime.add(decp); } } for (DeclareAnnotation deca: getCrosscuttingMembersSet().getDeclareAnnotationOnTypes()) { if (applyDeclareAtType(deca, onType, false)) { anAnnotationChangeOccurred = true; } } for (DeclareAnnotation deca: getCrosscuttingMembersSet().getD...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
getCrossReferenceHandler() .addCrossReference( checker.getSourceLocation(), shadow.getSourceLocation(), (checker.isError() ? IRelationship.Kind.DECLARE_ERROR.getName() : IRelationship.Kind.DECLARE_WARNING .getName()), false); } if (getModel() != null) { AsmRelationshipProvider....
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} for (File xmlfile : xmlFiles) { try { Definition d = DocumentParser.parse(xmlfile.toURI().toURL()); xmlConfiguration.add(d); } catch (MalformedURLException e) { raiseError("Unexpected problem processing XML config file '" + xmlfile.getName() + "' :" + e.getMessage()); } catch (Exception e) { ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
return xmlConfiguration; } @Override public boolean isAspectIncluded(ResolvedType aspectType) { if (!isXmlConfigured()) { return true; } return xmlConfiguration.specifiesInclusionOfAspect(aspectType.getName()); } @Override public TypePattern getAspectScope(ResolvedType declaringType) { return xmlConfig...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
return false; } else { if (!getMessageHandler().isIgnoring(IMessage.INFO)) { getMessageHandler().handleMessage( MessageUtil.info("deactivating aspect '" + aspectName + "' as it requires type '" + requiredTypeName + "' which cannot be found on the classpath")); } aspectRequired...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
final static int MODE_COMPILE = 1; final static int MODE_LTW = 2; private int mode; private boolean initialized = false; private List<Definition> definitions = new ArrayList<Definition>(); private List<String> resolvedIncludedAspects = new ArrayList<String>(); private Map<String, TypePattern> scopes = new ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
try { TypePattern scopePattern = new PatternParser(scope).parseTypePattern(); scopePattern.resolve(world); scopes.put(aspectName, scopePattern); if (!world.getMessageHandler().isIgnoring(IMessage.INFO)) { world.getMessageHandler().handleMessage( MessageUtil.info("Aspect '" + aspectName + "' ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
String scope = definition.getScopeForAspect(name); if (scope != null) { try { TypePattern scopePattern = new PatternParser(scope).parseTypePattern(); scopePattern.resolve(world); scopes.put(name, scopePattern); if (!world.getMessageHandler().isIgnoring(IMessag...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
includedFastMatchPatterns.add(includePattern.substring(0, includePattern.length() - 2)); } else { TypePattern includedPattern = new PatternParser(includePattern).parseTypePattern(); includedPatterns.add(includedPattern); } } List<String> excludePatterns = definition.getEx...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
} public boolean specifiesInclusionOfAspect(String name) { ensureInitialized(); return resolvedIncludedAspects.contains(name); } public TypePattern getScopeFor(String name) { return scopes.get(name); } public boolean excludesType(ResolvedType type) { if (mode == MODE_LTW) { r...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
break; } } } return excluded; } } public TypeMap getTypeMap() { return typeMap; } public boolean isLoadtimeWeaving() { return false; } public void addTypeDelegateResolver(TypeDelegateResolver typeDelegateResolver) { if (typeDelegateResolvers == null) { typeDelegateResolvers = new ArrayLi...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.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 Eclipse Public License v1.0 * which accompanies this distri...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.ListIterator; import java.util.Map; import java.util.Set; import java.util.Stack; import org.aspectj.apache.bcel.Constants; import org.aspectj.a...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
import org.aspectj.apache.bcel.generic.TargetLostException; import org.aspectj.apache.bcel.generic.Type; import org.aspectj.bridge.IMessage; import org.aspectj.bridge.ISourceLocation; import org.aspectj.weaver.AjAttribute; import org.aspectj.weaver.AjAttribute.WeaverVersionInfo; import org.aspectj.weaver.AnnotationAJ; ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
private static final int ACC_SYNTHETIC = 0x1000; private int modifiers; private Type returnType; private final String name; private Type[] argumentTypes; private String[] declaredExceptions; private InstructionList body; private List<Attribute> attributes; private List<AnnotationAJ> newAnnotations; private L...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
* other relevant info. * * Whats the difference between a Tag and a Gen? A Tag is more lightweight, it doesn't know which instructions it targets, it * relies on the instructions targettingit - this reduces the amount of targeter manipulation we have to do. */ /** * This is nonnull if this method is the res...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} else { body = null; } this.attributes = new ArrayList<Attribute>(); this.enclosingClass = enclosingClass; assertGoodBody(); if (memberView != null && isAdviceMethod()) { if (enclosingClass.getType().isAnnotationStyleAspect()) { this.canInline = false; } } } private int calc...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
throw new RuntimeException("bad non-abstract method with no code: " + m + " on " + enclosingClass); } if ((m.isAbstract() || m.isNative()) && m.getCode() != null) { throw new RuntimeException("bad abstract method with code: " + m + " on " + enclosingClass); } this.memberView = new BcelMethod(enclosingClass.g...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} if (isAbstractOrNative(m.getModifiers()) && savedMethod.getCode() != null) { throw new RuntimeException("bad abstract method with code: " + m + " on " + enclosingClass); } this.memberView = m; this.modifiers = savedMethod.getModifiers(); this.name = m.getName(); if (memberVie...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
return -1; } } public int getDeclarationOffset() { if (hasDeclaredLineNumberInfo()) { return memberView.getDeclarationOffset(); } else { return 0; } } public void addAnnotation(AnnotationAJ ax) { initialize(); if (memberView == null) { if (newAnnotations == null) { newAnnotations = new ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} else { memberView.removeAnnotation(annotationType); } } public void addParameterAnnotation(int parameterNumber, AnnotationAJ anno) { initialize(); if (memberView == null) { if (newParameterAnnotations == null) { int pcount = getArgumentTypes().length; newParameterAnnotations = new Annotatio...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
public boolean hasAnnotation(UnresolvedType annotationType) { initialize(); if (memberView == null) { if (annotationsForRemoval != null) { for (ResolvedType at : annotationsForRemoval) { if (at.equals(annotationType)) { return false; } } } if (newAnnotations != null) { for (...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
this.declaredExceptions = gen.getExceptions(); this.attributes = gen.getAttributes(); this.maxLocals = gen.getMaxLocals(); if (gen.isAbstract() || gen.isNative()) { body = null; } else { body = gen.getInstructionList(); unpackHandlers(gen); ensureAllLineNumberSetup(...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
private void unpackHandlers(MethodGen gen) { CodeExceptionGen[] exns = gen.getExceptionHandlers(); if (exns != null) { int len = exns.length; int priority = len - 1; for (int i = 0; i < len; i++, priority--) { CodeExceptionGen exn = exns[i]; InstructionHandle start = Range.genStart(body, getOut...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} } private InstructionHandle getOutermostExceptionEnd(InstructionHandle ih) { while (true) { if (ExceptionRange.isExceptionEnd(ih.getNext())) { ih = ih.getNext(); } else { return ih; } } } /** * On entry to this method we have a method whose instruction stream contains a few instructions tha...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} } public int allocateLocal(Type type) { return allocateLocal(type.getSize()); } public int allocateLocal(int slots) { int max = getMaxLocals(); setMaxLocals(max + slots); return max; } public Method getMethod() { if (savedMethod != null) { return savedMethod; } try { MethodGen gen = p...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
body = null; MethodGen gen = pack(); return gen.getMethod(); } catch (RuntimeException re) { if (re.getCause() instanceof ClassGenException) { enclosingClass .getBcelObjectType() .getResolvedTypeX() .getWorld() .showMessage( IMessage.ERROR, WeaverMessages.format(We...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
savedMethod = null; } @Override public String toString() { BcelObjectType bot = enclosingClass.getBcelObjectType(); WeaverVersionInfo weaverVersion = (bot == null ? WeaverVersionInfo.CURRENT : bot.getWeaverVersionAttribute()); return toLongString(weaverVersion); } public String toShortString() { String a...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
buf.append(")"); { int len = declaredExceptions != null ? declaredExceptions.length : 0; if (len > 0) { buf.append(" throws "); buf.append(declaredExceptions[0]); for (int i = 1; i < declaredExceptions.length; i++) { buf.append(", "); buf.append(declaredExceptions[i]); } } } ret...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
out.println(":"); new BodyPrinter(out).run(); out.println(" end " + toShortString()); } private void printAspectAttributes(PrintStream out, WeaverVersionInfo weaverVersion) { ISourceContext context = null; if (enclosingClass != null && enclosingClass.getType() != null) { context = enclosingClass.getType()...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} void run() { assignLabels(); print(); } void assignLabels() { LinkedList<ExceptionRange> exnTable = new LinkedList<ExceptionRange>(); String pendingLabel = null; int lcounter = 0; for (InstructionHandle ih = body.getStart(); ih != null; ih = ih.getNext()) { Iterator<InstructionT...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} else { } } if (pendingLabel != null) { labelMap.put(ih, pendingLabel); if (!Range.isRangeHandle(ih)) { pendingLabel = null; } } } int ecounter = 0; for (Iterator i = exnTable.iterator(); i.hasNext();) { ExceptionRange er = (ExceptionRange) i.next(); String...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
continue bodyPrint; } } if (r.getStart() == ih) { printRangeString(r, depth++); } else { if (r.getEnd() != ih) { throw new RuntimeException("bad"); } printRangeString(r, --depth); } } else { printInstruction(ih, depth); int line = getLin...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
if (r instanceof ExceptionRange) { ExceptionRange er = (ExceptionRange) r; return er.toString() + " -> " + labelMap.get(er.getHandler()); } else { return r.toString(); } } void printDepth(int depth) { pad(BODY_INDENT); while (depth > 0) { out.print("| "); depth--; } } ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
Instruction inst = h.getInstruction(); if (inst.isConstantPoolInstruction()) { out.print(Constants.OPCODE_NAMES[inst.opcode].toUpperCase()); out.print(" "); out.print(pool.constantToString(pool.getConstant(inst.getIndex()))); } else if (inst instanceof InstructionSelect) { InstructionSelect sinst ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
out.print(inst.toString(false).toUpperCase()); int index = inst.getIndex(); LocalVariableTag tag = getLocalVariableTag(h, index); if (tag != null) { out.print(" "); out.print(tag.getType()); out.print(" "); out.print(tag.getName()); } } else { out.print(inst.toString(fals...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} } return null; } static int getLineNumber(InstructionHandle ih, int prevLine) { for (InstructionTargeter t : ih.getTargeters()) { if (t instanceof LineNumberTag) { return ((LineNumberTag) t).getLineNumber(); } } return prevLine; } public boolean isStatic() { return Modifier.isStatic(getAcces...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} public int getAccessFlagsWithoutSynchronized() { if (isSynchronized()) { return modifiers - Modifier.SYNCHRONIZED; } return modifiers; } public boolean isSynchronized() { return (modifiers & Modifier.SYNCHRONIZED) != 0; } public void setAccessFlags(int newFlags) { this.modifiers = newFlags; } publ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
return memberView.getGenericReturnType().getSignature(); } } public Type getReturnType() { initialize(); return returnType; } public void setMaxLocals(int maxLocals) { this.maxLocals = maxLocals; } public InstructionList getBody() { markAsChanged(); return body; } public InstructionList getBodyForPr...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
return enclosingClass.getName(); } public MethodGen pack() { forceSyntheticForAjcMagicMembers(); int flags = getAccessFlags(); if (enclosingClass.getWorld().isJoinpointSynchronizationEnabled() && enclosingClass.getWorld().areSynchronizationPointcutsInUse()) { flags = getAccessFlagsWithoutSynchronize...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} } } if (memberView != null && memberView.getAnnotations() != null && memberView.getAnnotations().length != 0) { AnnotationAJ[] ans = memberView.getAnnotations(); for (int i = 0, len = ans.length; i < len; i++) { AnnotationGen a = ((BcelAnnotation) ans[i]).getBcelAnnotation(); gen.addAnnotation(ne...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} gen.setMaxLocals(); gen.setMaxStack(); } else { gen.setInstructionList(null); } return gen; } private boolean hasAttribute(String attributeName) { for (Attribute attr: attributes) { if (attr.getName().equals(attributeName)) { return true; } } return false; } private void forceSynt...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
InstructionHandle start = null; InstructionHandle end = null; } /** * fill the newly created method gen with our body, inspired by InstructionList.copy() */ public void packBody(MethodGen gen) { InstructionList fresh = gen.getInstructionList(); Map<InstructionHandle, InstructionHandle> map = copyAllInstruc...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
Instruction oldInstruction = oldInstructionHandle.getInstruction(); Instruction newInstruction = newInstructionHandle.getInstruction(); if (oldInstruction instanceof InstructionBranch) { handleBranchInstruction(map, oldInstruction, newInstruction); } for (InstructionTargeter targeter : ol...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
oldInstructionHandle = oldInstructionHandle.getNext(); newInstructionHandle = newInstructionHandle.getNext(); } } addExceptionHandlers(gen, map, exceptionList); if (localVariables.size() == 0) { createNewLocalVariables(gen); } else { addLocalVariables(gen, localVariables); } ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
int slot = 0; InstructionHandle start = gen.getInstructionList().getStart(); InstructionHandle end = gen.getInstructionList().getEnd(); if (!isStatic()) { String cname = this.enclosingClass.getClassName(); if (cname == null) { return; } Type enclosingType = BcelWorld.makeBcelType(Unre...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
public void optimizedPackBody(MethodGen gen) { InstructionList theBody = getBody(); InstructionHandle iHandle = theBody.getStart(); int currLine = -1; int lineNumberOffset = (fromFilename == null) ? 0 : getEnclosingClass().getSourceDebugExtensionOffset(fromFilename); Map<LocalVariableTag, LVPosition> localVar...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
branchInstructions.add((BranchHandle) iHandle); } for (InstructionTargeter targeter : iHandle.getTargetersCopy()) { if (targeter instanceof LineNumberTag) { int line = ((LineNumberTag) targeter).getLineNumber(); if (line != currLine) { gen.addLineNumber(iHandle, line + lineNumberOffset);...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
for (ExceptionRange r : exceptionList) { if (r.isEmpty()) { continue; } gen.addExceptionHandler(jumpForward(r.getRealStart(), forDeletion), jumpForward(r.getRealEnd(), forDeletion), jumpForward(r.getHandler(), forDeletion), (r.getCatchType() == null) ? null : (ObjectType) BcelWorld.makeBcelType(r...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
if (gen.getLineNumbers().length == 0) { gen.addLineNumber(gen.getInstructionList().getStart(), 1); } wasPackedOptimally = true; } private void addLocalVariables(MethodGen gen, Map<LocalVariableTag, LVPosition> localVariables) { gen.removeLocalVariables(); InstructionHandle methodStart = gen....
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} } Map<InstructionHandle, Set<Integer>> duplicatedLocalMap = new HashMap<InstructionHandle, Set<Integer>>(); for (LocalVariableTag tag : localVariables.keySet()) { LVPosition lvpos = localVariables.get(tag); InstructionHandle start = (tag.getSlot() < paramSlots ? methodStart : lvpos.start); ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
if (r.isEmpty()) { continue; } InstructionHandle rMappedStart = remap(r.getRealStart(), map); InstructionHandle rMappedEnd = remap(r.getRealEnd(), map); InstructionHandle rMappedHandler = remap(r.getHandler(), map); gen.addExceptionHandler(rMappedStart, rMappedEnd, rMappedHandler, (r.getCatchType() =...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
InstructionHandle target = t; if (handlesForDeletion.contains(target)) { do { target = target.getNext(); } while (handlesForDeletion.contains(target)); } return target; } /** * Process a branch instruction with respect to instructions that are about to be deleted. If the target for the branch is a ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} while (handlesForDeletion.contains(oneTarget)); iSelect.setTarget(k, oneTarget); oneTarget.addTargeter(branchInstruction); } } } } private void handleRangeInstruction(InstructionHandle ih, LinkedList<ExceptionRange> exnList) { Range r = Range.getRange(ih); if (r instanceof ExceptionRange) ...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
for (InstructionHandle ih = getBody().getStart(); ih != null; ih = ih.getNext()) { if (Range.isRangeHandle(ih)) { continue; } Instruction inst = ih.getInstruction(); Instruction copy = Utility.copyInstruction(inst); if (copy instanceof InstructionBranch) { map.put(ih, intoList.append((Instruction...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
private static InstructionHandle remap(InstructionHandle handle, Map<InstructionHandle, InstructionHandle> map) { while (true) { InstructionHandle ret = map.get(handle); if (ret == null) { handle = handle.getNext(); } else { return ret; } } }
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
static void insertHandler(ExceptionRange fresh, LinkedList<ExceptionRange> l) { for (ListIterator<ExceptionRange> iter = l.listIterator(); iter.hasNext();) { ExceptionRange r = iter.next(); if (fresh.getPriority() >= r.getPriority()) { iter.previous(); iter.add(fresh); return; } }
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
l.add(fresh); } public boolean isPrivate() { return Modifier.isPrivate(getAccessFlags()); } public boolean isProtected() { return Modifier.isProtected(getAccessFlags()); } public boolean isDefault() { return !(isProtected() || isPrivate() || isPublic()); } public boolean isPublic() { return Modifier.isP...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
* </ul> * * Where the shorthand "R is in body" means "R.start is in body, R.end is in body, and any InstructionHandle stored in a field * of R (such as an exception handle) is in body". */ public void assertGoodBody() { if (true) { return; } assertGoodBody(getBody(), toString()); } public static v...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
return; } if (r instanceof ExceptionRange) { if (((ExceptionRange) r).getHandler() == target) { return; } } } else if (targeter instanceof InstructionBranch) { InstructionBranch bi = (InstructionBranch) targeter; if (bi.getTarget() == target) { return; } if (targeter instanceof I...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
throw new BCException("range handle with no range in " + from); } while (tIter.hasNext()) { InstructionTargeter ts = tIter.next(); if (ts instanceof Range) { if (ret != null) { throw new BCException("range handle with multiple ranges in " + from); } ret = (Range) ts; } } if (ret == nul...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
if (memberView == null) { return false; } return memberView.isSynthetic(); } public ISourceLocation getSourceLocation() { if (memberView != null) { return memberView.getSourceLocation(); } return null; } public AjAttribute.EffectiveSignatureAttribute getEffectiveSignature() { if (effectiveSigna...
418,129
Bug 418129 Can't introduce annotation onto introduced method from trait-patterned aspect
null
resolved fixed
2393bef
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:00:14Z
2013-09-26T18:26:40Z
weaver/src/org/aspectj/weaver/bcel/LazyMethodGen.java
} return MemberImpl.typesToSignature(BcelWorld.fromBcel(getArgumentTypes())); } public BcelMethod getMemberView() { return memberView; } public void forcePublic() { markAsChanged(); modifiers = Utility.makePublic(modifiers); } public boolean getCanInline() { return canInline; } public void setCanInlin...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.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 ...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
import org.aspectj.weaver.tools.cache.SimpleCacheFactory; /** * Adapter between the generic class pre processor interface and the AspectJ weaver Load time weaving consistency relies on * Bcel.setRepository * * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a> */ public class Aj implements Clas...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
public void initialize() { } private final static String deleLoader = "sun.reflect.DelegatingClassLoader"; /** * Weave * * @param className * @param bytes * @param loader * @return woven bytes */ public byte[] preProcess(String className, byte[] bytes, ClassLoader loader, ProtectionDomain protectionD...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
if (SimpleCacheFactory.isEnabled()) { byte[] cacheBytes= laCache.getAndInitialize(className, bytes,loader,protectionDomain); if (cacheBytes!=null){ return cacheBytes; } } WeavingAdaptor weavingAdaptor = WeaverContainer.getWeaver(loader, weavingContext); if (weavingAdaptor == null) { ...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
if (trace.isTraceEnabled()) trace.exit("preProcess", th); return bytes; } finally { CompilationAndWeavingContext.resetForThread(); } } /** * An AdaptorKey is a WeakReference wrapping a classloader reference that will enqueue to a specified queue when the classloader * is GC'd. Since the AdaptorKey i...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
} public boolean equals(Object obj) { if (!(obj instanceof AdaptorKey)) { return false; } AdaptorKey other = (AdaptorKey) obj; return (other.loaderHashCode == loaderHashCode) && (other.sysHashCode == sysHashCode) && loaderClass.equals(other.loaderClass); } public int hashCode() { ret...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
Object object = iterator.next(); System.err.println(object + " = " + WeaverContainer.weavingAdaptors.get(object)); } } Object o = adaptorQueue.poll(); while (o != null) { if (displayProgress) System.err.println("Processing referencequeue entry " + o); AdaptorKey wo = (AdaptorKey) o; b...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
} /** * @return the number of entries still in the weavingAdaptors map */ public static int getActiveAdaptorCount() { return WeaverContainer.weavingAdaptors.size(); } /** * Process the reference queue that contains stale AdaptorKeys - the keys are put on the queue when their classloader referent * is garb...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
StringTokenizer st = new StringTokenizer(loadersToSkipProperty, ","); if (loadersToSkipProperty != null && loadersToSkip == null) { if (st.hasMoreTokens()) { loadersToSkip = new ArrayList<String>(); } while (st.hasMoreTokens()) { String nextLoader = st.nextToken(); loadersToSkip.add(nextLo...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
} if (adaptor == null) { ClassLoaderWeavingAdaptor weavingAdaptor = new ClassLoaderWeavingAdaptor(); adaptor = new ExplicitlyInitializedClassLoaderWeavingAdaptor(weavingAdaptor); if(myClassLoaderAdpator == null){ myClassLoaderAdpator = adaptor; } ...
415,266
Bug 415266 LTW not working when JMX is enabled
When I enable JMX remote management on a JVM along with AspectJ load-time weaving (LTW), our Aspect doesn't appear to get woven in. This are the JVM arguments: -Dvisualvm.display.name=JdbcTimingAspectTest -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmx...
resolved fixed
9e992d6
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-01T17:08:31Z
2013-08-16T21:53:20Z
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
isInitialized = true; weavingAdaptor.initialize(loader, weavingContext); } } public ClassLoaderWeavingAdaptor getWeavingAdaptor(ClassLoader loader, IWeavingContext weavingContext) { initialize(loader, weavingContext); return weavingAdaptor; } } /** * Returns a namespace based on the contest of th...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
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 Eclipse Public License v1.0 * which accompanies this distri...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
private boolean shouldProceed = true; public static final String AJLINT_IGNORE = "ignore"; public static final String AJLINT_WARN = "warn"; public static final String AJLINT_ERROR = "error"; public static final String AJLINT_DEFAULT = "default"; private File outputDir; private File outputJar; private String outx...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
private CompilationResultDestinationManager compilationResultDestinationManager = null; private List<File> sourceRoots = new ArrayList<File>(); private List<File> changedFiles; private List<File> files = new ArrayList<File>(); private List<File> xmlfiles = new ArrayList<File>(); private List<BinarySourceFile> bina...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
this.binSrc = src; } public File fromInPathDirectory; public File binSrc; public boolean equals(Object obj) { if (obj != null && (obj instanceof BinarySourceFile)) { BinarySourceFile other = (BinarySourceFile) obj; return (binSrc.equals(other.binSrc)); } return false; } public int hashCode(...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
* * @return all source files that should be compiled. */ public List<File> getFiles() { return files; } public List<File> getXmlFiles() { return xmlfiles; } /** * returned files includes all .class files found in a directory on the inpath, but does not include .class files contained * within jars. *...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
} public void setOutputDir(File outputDir) { this.outputDir = outputDir; } public AjCompilerOptions getOptions() { return options; } /** * This does not include -bootclasspath but includes -extdirs and -classpath */ public List<String> getClasspath() { return classpath; } public void setClasspath(List...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
return inPath; } public List<File> getInJars() { return inJars; } public Map<String, File> getSourcePathResources() { return sourcePathResources; } public void setOutputJar(File outputJar) { this.outputJar = outputJar; } public void setOutxmlName(String name) { this.outxmlName = name; } public void se...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
for (int i = 0; i < files.length; i++) { binaryFiles.add(new BinarySourceFile(inpathElement, files[i])); } } } } public List<File> getSourceRoots() { return sourceRoots; } public void setSourceRoots(List<File> sourceRootDir) { this.sourceRoots = sourceRootDir; } public File getConfigFile() { r...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
/** * @return List (String) classpath of bootclasspath, injars, inpath, aspectpath entries, specified classpath (extdirs, and * classpath), and output dir or jar */ public List<String> getFullClasspath() { List<String> full = new ArrayList<String>(); full.addAll(getBootclasspath()); for (Iterator<...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
public List<File> getAspectpath() { return aspectpath; } public void setAspectpath(List<File> aspectpath) { this.aspectpath = aspectpath; } public boolean hasSources() { return ((null != configFile) || (0 < sourceRoots.size()) || (0 < files.size()) || (0 < inJars.size()) || (0 < inPath.size())); } ...
419,279
Bug 419279 ajc option to change -Xlint level per-message without Xlintfile
The -Xlintfile option is not a great fit for controlling message across multiple build projects, specifically in my case from the pluginManagement section of a maven parent pom. The problem is that you need a local file to configure the per-message output levels (ignore/warning/error) when you really want to specify it...
resolved fixed
b2cd5fa
AspectJ
https://github.com/eclipse/org.aspectj
eclipse/org.aspectj
java
null
null
null
2013-10-23T19:44:23Z
2013-10-11T19:33:20Z
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java
* @param global the AjBuildConfig to read globals from */ public void installGlobals(AjBuildConfig global) { options.defaultEncoding = global.options.defaultEncoding; join(aspectpath, global.aspectpath); join(classpath, global.classpath); if (null == configFile) { configFile = global.configFi...