MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / ExpressionToPostfix

Method ExpressionToPostfix

source/script.cpp:7760–7767  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7758
7759
7760ResultType Line::ExpressionToPostfix(ArgStruct &aArg)
7761{
7762 ExprTokenType *infix = NULL;
7763 ResultType result = ExpressionToPostfix(aArg, infix);
7764 // This approach produces smaller code than using RAII in the function below:
7765 free(infix);
7766 return result;
7767}
7768
7769ResultType Line::ExpressionToPostfix(ArgStruct &aArg, ExprTokenType *&aInfix)
7770// Returns OK or FAIL.

Callers 1

PreparseExpressionsMethod · 0.80

Calls 10

omit_leading_whitespaceFunction · 0.85
find_identifier_endFunction · 0.85
IsHexFunction · 0.85
TokenToStringFunction · 0.85
SetValueMethod · 0.80
is_variadicMethod · 0.80
CopyExprFromMethod · 0.80
FindOrAddVarMethod · 0.80
MarkAssignedSomewhereMethod · 0.80
istrtoi64Function · 0.70

Tested by

no test coverage detected