Skip to content

Commit

Permalink
undocument parse_document and parse_expr, just streamlining
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Jul 16, 2019
1 parent ee2e04f commit 58f0c3a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions WDL/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ async def resolve_file_import(uri: str, path: List[str], importer: Optional[Docu


def parse_document(txt: str, version: Optional[str] = None, uri: str = "") -> Document:
""
"""
Parse WDL document text into an abstract syntax tree. Doesn't descend into
imported documents nor typecheck the AST.
Expand All @@ -134,6 +135,7 @@ def parse_document(txt: str, version: Optional[str] = None, uri: str = "") -> Do


def parse_expr(txt: str, version: Optional[str] = None) -> Expr.Base:
""
"""
Parse an isolated WDL expression text into an abstract syntax tree
"""
Expand Down

0 comments on commit 58f0c3a

Please sign in to comment.