Get this component's code object's `.text` section, containing its compiled executable code.
(&self)
| 570 | /// Get this component's code object's `.text` section, containing its |
| 571 | /// compiled executable code. |
| 572 | pub fn text(&self) -> &[u8] { |
| 573 | self.engine_code().text() |
| 574 | } |
| 575 | |
| 576 | /// Get information about functions in this component's `.text` section: |
| 577 | /// their module index, function index, name, and offset+length. |
no test coverage detected