add size()
This commit is contained in:
@ -14,6 +14,10 @@ public class AST {
|
||||
return this.root;
|
||||
}
|
||||
|
||||
public long size() {
|
||||
return this.root.size();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof AST) {
|
||||
|
||||
Reference in New Issue
Block a user