Example #1
0
 def compile_bridge(self, faildescr, inputargs, operations, original_loop_token, log=True):
     c = llimpl.compile_start()
     clt = original_loop_token.compiled_loop_token
     clt.loop_and_bridges.append(c)
     clt.compiling_a_bridge()
     self._compile_loop_or_bridge(c, inputargs, operations, clt)
     old, oldindex = faildescr._compiled_fail
     llimpl.compile_redirect_fail(old, oldindex, c)
Example #2
0
 def compile_bridge(self,
                    faildescr,
                    inputargs,
                    operations,
                    original_loop_token,
                    log=True):
     c = llimpl.compile_start()
     clt = original_loop_token.compiled_loop_token
     clt.loop_and_bridges.append(c)
     clt.compiling_a_bridge()
     self._compile_loop_or_bridge(c, inputargs, operations, clt)
     old, oldindex = faildescr._compiled_fail
     llimpl.compile_redirect_fail(old, oldindex, c)
Example #3
0
 def compile_bridge(self, faildescr, inputargs, operations):
     c = llimpl.compile_start()
     self._compile_loop_or_bridge(c, inputargs, operations)
     old, oldindex = faildescr._compiled_fail
     llimpl.compile_redirect_fail(old, oldindex, c)
Example #4
0
 def compile_bridge(self, faildescr, inputargs, operations):
     c = llimpl.compile_start()
     self._compile_loop_or_bridge(c, inputargs, operations)
     old, oldindex = faildescr._compiled_fail
     llimpl.compile_redirect_fail(old, oldindex, c)