MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / DemangleInitializer

Method DemangleInitializer

demangler/gnu3/demangle_gnu3.cpp:718–729  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

716
717
718string DemangleGNU3::DemangleInitializer()
719{
720 string out;
721 if (m_reader.ReadString(2) != "pi")
722 throw DemangleException();
723 out += "(";
724 while (m_reader.Peek() != 'E')
725 out += DemangleExpression();
726 m_reader.Consume();
727 out += ")";
728 return out;
729}
730
731static int8_t HexToDec(char c)
732{

Callers

nothing calls this directly

Calls 4

DemangleExceptionClass · 0.70
ReadStringMethod · 0.45
PeekMethod · 0.45
ConsumeMethod · 0.45

Tested by

no test coverage detected