| 18 | return near_link_pos_ > 0; |
| 19 | } |
| 20 | int Label::pos() const { |
| 21 | if (pos_ < 0) |
| 22 | return -pos_ - 1; |
| 23 | if (pos_ > 0) |
| 24 | return pos_ - 1; |
| 25 | return 0; |
| 26 | } |
| 27 | void Label::bind_to(int pos) { |
| 28 | pos_ = -pos - 1; |
| 29 | } |
no outgoing calls
no test coverage detected