mirror of
https://github.com/buhman/nds.git
synced 2025-06-18 14:35:38 -04:00
36 lines
840 B
Python
36 lines
840 B
Python
import io
|
|
|
|
def should_autonewline(line):
|
|
return (
|
|
"static_assert" not in line
|
|
and "extern" not in line
|
|
and (len(line.split()) < 2 or line.split()[1] != '=') # hacky; meh
|
|
)
|
|
|
|
def _render(out, lines):
|
|
indent = " "
|
|
level = 0
|
|
for l in lines:
|
|
if l and (l[0] == "}" or l[0] == ")"):
|
|
level -= 2
|
|
assert level >= 0, out.getvalue()
|
|
|
|
if len(l) == 0:
|
|
out.write("\n")
|
|
else:
|
|
out.write(indent * level + l + "\n")
|
|
|
|
if l and (l[-1] == "{" or l[-1] == "("):
|
|
level += 2
|
|
|
|
if level == 0 and l and l[-1] == ";":
|
|
if should_autonewline(l):
|
|
out.write("\n")
|
|
return out
|
|
|
|
def renderer():
|
|
out = io.StringIO()
|
|
def render(lines):
|
|
return _render(out, lines)
|
|
return render, out
|