Get this module's code object's `.text` section, containing its compiled executable code.
(&self)
| 1081 | /// Get this module's code object's `.text` section, containing its compiled |
| 1082 | /// executable code. |
| 1083 | pub fn text(&self) -> &[u8] { |
| 1084 | self.engine_code().text() |
| 1085 | } |
| 1086 | |
| 1087 | /// Get information about functions in this module's `.text` section: their |
| 1088 | /// index, name, and offset+length. |
nothing calls this directly
no test coverage detected