]> source.dussan.org Git - aspectj.git/commitdiff
implementation of parameterize with for EllipsisTypePattern
authoracolyer <acolyer>
Tue, 16 Aug 2005 09:28:57 +0000 (09:28 +0000)
committeracolyer <acolyer>
Tue, 16 Aug 2005 09:28:57 +0000 (09:28 +0000)
weaver/src/org/aspectj/weaver/patterns/TypePattern.java

index 0805e68954992d33a6c04b058ac3099cc7bb3652..8969cd4ce243d52bdcf5063e877fd54b7c964f10 100644 (file)
@@ -427,6 +427,10 @@ class EllipsisTypePattern extends TypePattern {
     public Object accept(PatternNodeVisitor visitor, Object data) {
         return visitor.visit(this, data);
     }
+    
+    public TypePattern parameterizeWith(Map typeVariableMap) {
+       return this;
+    }
 
 
 }