| 307 | } |
| 308 | |
| 309 | void MacroActionMacro::ResolveVariablesToFixedValues() |
| 310 | { |
| 311 | _actionIndex.ResolveVariables(); |
| 312 | _label.ResolveVariables(); |
| 313 | |
| 314 | if (_action == Action::NESTED_MACRO) { |
| 315 | for (auto &action : _nestedMacro->Actions()) { |
| 316 | action->ResolveVariablesToFixedValues(); |
| 317 | } |
| 318 | for (auto &action : _nestedMacro->ElseActions()) { |
| 319 | action->ResolveVariablesToFixedValues(); |
| 320 | } |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | static void runActionsHelper(Macro *macro, bool runElseActions, bool setInputs, |
| 325 | const StringList &inputs) |
nothing calls this directly
no test coverage detected