| 27 | |
| 28 | |
| 29 | void PseudoCFunction::BeginLines(const HighLevelILInstruction& instr, HighLevelILTokenEmitter& tokens) |
| 30 | { |
| 31 | if (instr.exprIndex == m_highLevelIL->GetRootExpr().exprIndex) |
| 32 | { |
| 33 | // At top level, add braces around the entire function |
| 34 | tokens.PrependCollapseIndicator(); |
| 35 | tokens.AppendOpenBrace(); |
| 36 | tokens.NewLine(); |
| 37 | tokens.IncreaseIndent(); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | |
| 42 | void PseudoCFunction::EndLines(const HighLevelILInstruction& instr, HighLevelILTokenEmitter& tokens) |
nothing calls this directly
no test coverage detected