| 84 | } |
| 85 | virtual ~CaseScriptInterpreter( ) { /* nothing to do */ }; |
| 86 | virtual bool special_set( const lk_string &name, lk::vardata_t &val ) |
| 87 | { |
| 88 | if ( VarTableScriptInterpreter::special_set( name, val ) ) |
| 89 | { |
| 90 | m_case->VariableChanged( name, m_ndxHybrid ); |
| 91 | return true; |
| 92 | } |
| 93 | else |
| 94 | return false; |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | bool CaseCallbackContext::Invoke( lk::node_t *root, lk::env_t *parent_env, size_t ndxHybrid ) |
nothing calls this directly
no test coverage detected