Emit an already normalized binding. Parameters ---------- binding: Binding The binding to be emitted.
(self, binding: Binding)
| 759 | return _ffi_api.BlockBuilderCurrentBlockIsDataFlow(self) # type: ignore |
| 760 | |
| 761 | def emit_normalized(self, binding: Binding) -> None: |
| 762 | """Emit an already normalized binding. |
| 763 | |
| 764 | Parameters |
| 765 | ---------- |
| 766 | binding: Binding |
| 767 | The binding to be emitted. |
| 768 | """ |
| 769 | _ffi_api.BlockBuilderEmitNormalized(self, binding) # type: ignore |
| 770 | |
| 771 | def lookup_binding(self, var: Var) -> Expr | None: |
| 772 | """Lookup a var in the binding table. |
no outgoing calls