TODO: We might want to just go ahead and pass the line type. Apply to lines generated by Linear View that are not part of a function. Modify the lines to change the presentation of the block.
(
&self,
_object: &mut LinearViewObject,
_prev_object: Option<&LinearViewObject>,
_next_object: Option<&LinearViewObject>,
lines: Vec<LinearDisassemblyLine>,
| 254 | /// |
| 255 | /// Modify the lines to change the presentation of the block. |
| 256 | fn apply_to_misc_lines( |
| 257 | &self, |
| 258 | _object: &mut LinearViewObject, |
| 259 | _prev_object: Option<&LinearViewObject>, |
| 260 | _next_object: Option<&LinearViewObject>, |
| 261 | lines: Vec<LinearDisassemblyLine>, |
| 262 | ) -> Vec<LinearDisassemblyLine> { |
| 263 | lines |
| 264 | } |
| 265 | |
| 266 | /// Apply this Render Layer to all IL blocks and disassembly blocks. |
| 267 | /// |
no outgoing calls
no test coverage detected