aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/query/ast/__init__.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2023-01-20 14:36:11 +0100
committerMatthias Baumgartner <dev@igsor.net>2023-01-20 14:36:11 +0100
commita4789394e40aaa3152ad6009955709a6c7d277c2 (patch)
tree404e645ad07c90bff7e6a54f4d8f8e6fee612d3b /bsfs/query/ast/__init__.py
parente12cd52ad267563c8046a593ad551b1dd089a702 (diff)
downloadbsfs-a4789394e40aaa3152ad6009955709a6c7d277c2.tar.gz
bsfs-a4789394e40aaa3152ad6009955709a6c7d277c2.tar.bz2
bsfs-a4789394e40aaa3152ad6009955709a6c7d277c2.zip
fetch AST
Diffstat (limited to 'bsfs/query/ast/__init__.py')
-rw-r--r--bsfs/query/ast/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bsfs/query/ast/__init__.py b/bsfs/query/ast/__init__.py
index 704d051..66b097d 100644
--- a/bsfs/query/ast/__init__.py
+++ b/bsfs/query/ast/__init__.py
@@ -1,6 +1,6 @@
"""Query AST components.
-The query AST consists of a Filter syntax tree.
+The query AST consists of a Filter and a Fetch syntax trees.
Classes beginning with an underscore (_) represent internal type hierarchies
and should not be used for parsing. Note that the AST structures do not
@@ -14,10 +14,12 @@ Author: Matthias Baumgartner, 2022
import typing
# inner-module imports
+from . import fetch
from . import filter_ as filter # pylint: disable=redefined-builtin
# exports
__all__: typing.Sequence[str] = (
+ 'fetch',
'filter',
)