1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* *******************************************************************
* Copyright (c) 2019 Contributors
* All rights reserved.
* This program and the accompanying materials are made available
* under the terms of the Eclipse Public License v 2.0
* which accompanies this distribution and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
*
* ******************************************************************/
package org.aspectj.weaver.patterns;
/**
* @author Tuomas Kiviaho
*/
public class WildChildFinder extends AbstractPatternNodeVisitor {
private boolean wildChild;
public WildChildFinder() {
super();
}
public boolean containedWildChild() {
return wildChild;
}
@Override
public Object visit(WildAnnotationTypePattern node, Object data) {
node.getTypePattern().accept(this, data);
return node;
}
@Override
public Object visit(WildTypePattern node, Object data) {
this.wildChild = true;
return super.visit(node, data);
}
@Override
public Object visit(AndTypePattern node, Object data) {
node.getLeft().accept(this, data);
if (!this.wildChild) {
node.getRight().accept(this, data);
}
return node;
}
@Override
public Object visit(OrTypePattern node, Object data) {
node.getLeft().accept(this, data);
if (!this.wildChild) {
node.getRight().accept(this, data);
}
return node;
}
public Object visit(NotTypePattern node, Object data) {
node.getNegatedPattern().accept(this, data);
return node;
}
@Override
public Object visit(AnyWithAnnotationTypePattern node, Object data) {
node.getAnnotationPattern().accept(this, data);
return node;
}
}
|