parser refactoring
[sv2nmigen.git] / absyn.py
1 class Absyn:
2 def __init__(self):
3 self.outputfile = open("output.py","w")
4 def printpy(self,p):
5 self.outputfile.write(str(p)+"\n")