File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
expression/src/main/java/io/github/slince/expression/visitor Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 14
14
<dependency >
15
15
<groupId >io.github.slince</groupId >
16
16
<artifactId >expression</artifactId >
17
- <version >0.0.1 </version >
17
+ <version >0.0.2-RELEASE </version >
18
18
</dependency >
19
19
```
20
20
@@ -24,7 +24,7 @@ ObjectPath:
24
24
<dependency >
25
25
<groupId >io.github.slince</groupId >
26
26
<artifactId >expression-data-path</artifactId >
27
- <version >0.0.1 </version >
27
+ <version >0.0.2-RELEASE </version >
28
28
</dependency >
29
29
```
30
30
ObjectPath 使用文档见[ 这里] ( ./docs/zh_CN/objectpath.md ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ An expressive expression engine.
14
14
<dependency >
15
15
<groupId >io.github.slince</groupId >
16
16
<artifactId >expression</artifactId >
17
- <version >0.0.1 </version >
17
+ <version >0.0.2-RELEASE </version >
18
18
</dependency >
19
19
```
20
20
ObjectPath:
@@ -23,7 +23,7 @@ ObjectPath:
23
23
<dependency >
24
24
<groupId >io.github.slince</groupId >
25
25
<artifactId >expression-data-path</artifactId >
26
- <version >0.0.1 </version >
26
+ <version >0.0.2-RELEASE </version >
27
27
</dependency >
28
28
```
29
29
ObjectPath [ Documentation] ( ./docs/zh_CN/objectpath.md ) ;
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ public NodeTraverser(List<NodeVisitor> visitors){
17
17
this .visitors = visitors ;
18
18
}
19
19
20
+ /**
21
+ * Traverse the given node.
22
+ * @param node the ast node
23
+ * @return alternate node
24
+ */
20
25
public Node traverse (Node node ){
21
26
for (NodeVisitor visitor : visitors ) {
22
27
node = this .traverseNode (visitor , node , new NodeMetadataCollection ());
You can’t perform that action at this time.
0 commit comments