| 12 | { |
| 13 | |
| 14 | struct ApiScriptFrame |
| 15 | { |
| 16 | std::mutex Mutex; |
| 17 | double Seen{0}; |
| 18 | int NextLine{1}; |
| 19 | std::map<String, String> Lines; |
| 20 | Dictionary::Ptr Locals; |
| 21 | }; |
| 22 | |
| 23 | class ConsoleHandler final : public HttpHandler |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected