import org.aspectj.weaver.ResolvedType;
import org.aspectj.weaver.Shadow;
+import org.aspectj.weaver.World;
import org.aspectj.weaver.patterns.FastMatchInfo;
import org.aspectj.weaver.tools.MatchingContext;
/**
- * An implementation of FastMatchInfo that can also expose a
- * MatchingContext.
+ * An implementation of FastMatchInfo that can also expose a MatchingContext.
*
* @author Adrian Colyer
* @since 1.5.1
private final MatchingContext context;
- public ReflectionFastMatchInfo(ResolvedType type, Shadow.Kind kind, MatchingContext context) {
- super(type,kind);
- this.context = context;
+ public ReflectionFastMatchInfo(ResolvedType type, Shadow.Kind kind, MatchingContext context, World world) {
+ super(type, kind, world);
+ this.context = context;
}
/**