Mercurial > lcfOS
view python/c3/astprinter.py @ 262:ed14e077124c
Added conditional branch instructions
author | Windel Bouwman |
---|---|
date | Fri, 09 Aug 2013 11:30:11 +0200 |
parents | c1ccb1cb4cef |
children |
line wrap: on
line source
from .visitor import Visitor class AstPrinter: def printAst(self, pkg): self.indent = 0 visitor = Visitor() visitor.visit(pkg, self.print1, self.print2) def print1(self, node): print(' ' * self.indent + str(node)) self.indent += 2 def print2(self, node): self.indent -= 2