| 8882 | } |
| 8883 | |
| 8884 | void AddMethodDef(BfMethodDef* methodDef, StringImpl* methodDefString = NULL) |
| 8885 | { |
| 8886 | if (methodDefString != NULL) |
| 8887 | mResult += *methodDefString; |
| 8888 | else |
| 8889 | GetMethodDefString(methodDef, mResult); |
| 8890 | mResult += "\t"; |
| 8891 | AddLocation(methodDef->GetRefNode()); |
| 8892 | mResult += "\n"; |
| 8893 | } |
| 8894 | |
| 8895 | void ClearResults() |
| 8896 | { |
no test coverage detected