| 78 | } // namespace |
| 79 | |
| 80 | void EvaluatorHost::EnsureInitialized() |
| 81 | { |
| 82 | EnsureEvaluatorRuntimeStubsLinked(); |
| 83 | |
| 84 | if (_initialized) |
| 85 | return; |
| 86 | |
| 87 | _state.Init(); |
| 88 | _state.RegisterEvalCommands(); |
| 89 | _initialized = true; |
| 90 | } |
| 91 | |
| 92 | EvalState& EvaluatorHost::State() |
| 93 | { |
nothing calls this directly
no test coverage detected