MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / parseExpression

Function parseExpression

pcsx2/DebugTools/ExpressionParser.cpp:611–616  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609}
610
611bool parseExpression(const char* exp, IExpressionFunctions* funcs, u64& dest, std::string& error)
612{
613 PostfixExpression postfix;
614 if (!initPostfixExpression(exp,funcs,postfix,error)) return false;
615 return parsePostfixExpression(postfix,funcs,dest,error);
616}

Callers 3

ImportExtraSymbolsMethod · 0.85
ScanForFunctionsMethod · 0.85
evaluateExpressionMethod · 0.85

Calls 2

initPostfixExpressionFunction · 0.85
parsePostfixExpressionFunction · 0.85

Tested by

no test coverage detected