def test_nested_calls_cgen(self): call = Call('foo', [ Call('bar', []) ]) code = CGen().visit(call) assert str(code) == 'foo(bar());'
def h_ccode(self): header_block = List(body=self._header_functions) return CGen().visit(header_block)