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