python
¶
ASTx Python transpiler.
Modules:
-
astx
–ASTx.
Classes:
-
ASTxPythonTranspiler
–Transpiler that converts ASTx nodes to Python code.
ASTxPythonTranspiler
¶
ASTxPythonTranspiler()
Transpiler that converts ASTx nodes to Python code.
Notes
Please keep the visit method in alphabet order according to the node type. The visit method for astx.AST should be the first one.
Methods:
-
visit
–Handle LiteralDateTime nodes.
Source code in src/astx/tools/transpilers/python.py
21 22 23 |
|
visit
¶
visit(node: LiteralDateTime) -> str
Handle LiteralDateTime nodes.
Source code in src/astx/tools/transpilers/python.py
395 396 397 398 |
|