コード例 #1
0
ファイル: expr1_tests.py プロジェクト: Airr/lbac-python
 def assertExpr(self, text, asm):
     compiler.init(inp=StringIO(text))
     co = compiler.compile()
     instructions_match(co, asm)
コード例 #2
0
ファイル: expr2_tests.py プロジェクト: Airr/lbac-python
 def assertExpr(self, text, asm):
     co = self.compileExpr(text)
     instructions_match(co, asm)