X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fxpath%2Fast.mli;h=8040bb1eab586385498d3e80ddede91de9e9c9b7;hp=f2a4df764f1c7bda85ed516ff93a8aa992f3b403;hb=e13f5deae217f945b44fa345ef4f0008e1780787;hpb=fadcbf2f6f9f33b844fd5e875a1bda4bed446a43 diff --git a/src/xpath/ast.mli b/src/xpath/ast.mli index f2a4df7..8040bb1 100644 --- a/src/xpath/ast.mli +++ b/src/xpath/ast.mli @@ -14,14 +14,19 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) type path = single_path list and single_path = Absolute of step list | Relative of step list and step = axis * test * expr list -and axis = Self | Attribute | Child | Descendant | DescendantOrSelf | FollowingSibling - | Parent | Ancestor | AncestorOrSelf | PrecedingSibling | Preceding | Following +and axis = Self | Attribute | Child + | Descendant of bool + | FollowingSibling + | Parent + | Ancestor of bool + | PrecedingSibling + | Preceding | Following and test = Utils.QNameSet.t