| 1587 | } |
| 1588 | |
| 1589 | static const char* getIndentSpace(int indent) |
| 1590 | { |
| 1591 | static const char whitespace[] = |
| 1592 | " "; |
| 1593 | |
| 1594 | return whitespace + sizeof(whitespace) - 1 - indent*4; |
| 1595 | } |
| 1596 | |
| 1597 | static String8 flattenSymbol(const String8& symbol) { |
| 1598 | String8 result(symbol); |
no outgoing calls
no test coverage detected