| 46 | |
| 47 | |
| 48 | void PseudoRustFunction::EndLines(const HighLevelILInstruction& instr, HighLevelILTokenEmitter& tokens) |
| 49 | { |
| 50 | if (instr.exprIndex == m_highLevelIL->GetRootExpr().exprIndex) |
| 51 | { |
| 52 | // At top level, add braces around the entire function |
| 53 | tokens.NewLine(); |
| 54 | tokens.DecreaseIndent(); |
| 55 | tokens.PrependCollapseIndicator(); |
| 56 | tokens.AppendCloseBrace(); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | |
| 61 | BNSymbolDisplayResult PseudoRustFunction::AppendPointerTextToken(const HighLevelILInstruction& instr, int64_t val, |
nothing calls this directly
no test coverage detected