(m)
| 2696 | |
| 2697 | def visit_textclause(self, textclause, add_to_result_map=None, **kw): |
| 2698 | def do_bindparam(m): |
| 2699 | name = m.group(1) |
| 2700 | if name in textclause._bindparams: |
| 2701 | return self.process(textclause._bindparams[name], **kw) |
| 2702 | else: |
| 2703 | return self.bindparam_string(name, **kw) |
| 2704 | |
| 2705 | if not self.stack: |
| 2706 | self.isplaintext = True |
nothing calls this directly
no test coverage detected