| 13 | } |
| 14 | |
| 15 | Expression CtrlrPanelEvaluationScope::getSymbolValue (const String& symbol) const |
| 16 | { |
| 17 | if (owner.getModulator (symbol)) |
| 18 | { |
| 19 | return (Expression (owner.getModulator (symbol)->getValueNonMapped())); |
| 20 | } |
| 21 | return (Expression()); |
| 22 | } |
| 23 | |
| 24 | // Global evaluation scope |
| 25 | CtrlrGlobalEvaluationScope::CtrlrGlobalEvaluationScope(CtrlrPanel &_owner) : owner(_owner) |
nothing calls this directly
no test coverage detected