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 1414<dependency >
1515 <groupId >io.github.slince</groupId >
1616 <artifactId >expression</artifactId >
17- <version >0.0.1 </version >
17+ <version >0.0.2-RELEASE </version >
1818</dependency >
1919```
2020
@@ -24,7 +24,7 @@ ObjectPath:
2424<dependency >
2525 <groupId >io.github.slince</groupId >
2626 <artifactId >expression-data-path</artifactId >
27- <version >0.0.1 </version >
27+ <version >0.0.2-RELEASE </version >
2828</dependency >
2929```
3030ObjectPath 使用文档见[ 这里] ( ./docs/zh_CN/objectpath.md ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ An expressive expression engine.
1414<dependency >
1515 <groupId >io.github.slince</groupId >
1616 <artifactId >expression</artifactId >
17- <version >0.0.1 </version >
17+ <version >0.0.2-RELEASE </version >
1818</dependency >
1919```
2020ObjectPath:
@@ -23,7 +23,7 @@ ObjectPath:
2323<dependency >
2424 <groupId >io.github.slince</groupId >
2525 <artifactId >expression-data-path</artifactId >
26- <version >0.0.1 </version >
26+ <version >0.0.2-RELEASE </version >
2727</dependency >
2828```
2929ObjectPath [ 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){
1717 this .visitors = visitors ;
1818 }
1919
20+ /**
21+ * Traverse the given node.
22+ * @param node the ast node
23+ * @return alternate node
24+ */
2025 public Node traverse (Node node ){
2126 for (NodeVisitor visitor : visitors ) {
2227 node = this .traverseNode (visitor , node , new NodeMetadataCollection ());
You can’t perform that action at this time.
0 commit comments