| 104 | } |
| 105 | |
| 106 | bool CodeMemoryReportFormatter::isNewAllocator(TestMemoryAllocator* allocator) |
| 107 | { |
| 108 | return SimpleString::StrCmp(allocator->alloc_name(), defaultNewAllocator()->alloc_name()) == 0 || SimpleString::StrCmp(allocator->alloc_name(), defaultNewArrayAllocator()->alloc_name()) == 0; |
| 109 | } |
| 110 | |
| 111 | bool CodeMemoryReportFormatter::variableExists(const SimpleString& variableName) |
| 112 | { |
nothing calls this directly
no test coverage detected