init
This commit is contained in:
commit
38355d2442
9083 changed files with 1225834 additions and 0 deletions
|
|
@ -0,0 +1,43 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
|
||||
class Renderer(object):
|
||||
def render(self, ast):
|
||||
"""Walks the AST and calls member methods for each Node type.
|
||||
|
||||
@param ast {Node} The root of the abstract syntax tree.
|
||||
"""
|
||||
walker = ast.walker()
|
||||
|
||||
self.buf = ''
|
||||
self.last_out = '\n'
|
||||
|
||||
event = walker.nxt()
|
||||
while event is not None:
|
||||
type_ = event['node'].t
|
||||
if hasattr(self, type_):
|
||||
getattr(self, type_)(event['node'], event['entering'])
|
||||
event = walker.nxt()
|
||||
|
||||
return self.buf
|
||||
|
||||
def lit(self, s):
|
||||
"""Concatenate a literal string to the buffer.
|
||||
|
||||
@param str {String} The string to concatenate.
|
||||
"""
|
||||
self.buf += s
|
||||
self.last_out = s
|
||||
|
||||
def cr(self):
|
||||
if self.last_out != '\n':
|
||||
self.lit('\n')
|
||||
|
||||
def out(self, s):
|
||||
"""Concatenate a string to the buffer possibly escaping the content.
|
||||
|
||||
Concrete renderer implementations should override this method.
|
||||
|
||||
@param str {String} The string to concatenate.
|
||||
"""
|
||||
self.lit(s)
|
||||
Loading…
Add table
Add a link
Reference in a new issue