Link
| 547 | |
| 548 | // Link |
| 549 | void comeFrom(JumpId inJump) HXCPP_OVERRIDE |
| 550 | { |
| 551 | if (compiler) |
| 552 | { |
| 553 | sljit_label *label = sljit_emit_label(compiler); |
| 554 | sljit_set_label(inJump, label); |
| 555 | } |
| 556 | } |
| 557 | LabelId addLabel() HXCPP_OVERRIDE |
| 558 | { |
| 559 | if (compiler) |
no test coverage detected