| 238 | } |
| 239 | |
| 240 | void Parser::Imp::CmdInclude(std::string s, std::string curpath) { |
| 241 | std::string cmd; |
| 242 | std::string filename; |
| 243 | std::stringstream b(s); |
| 244 | b >> cmd >> filename; |
| 245 | std::string dir; |
| 246 | owner_->ParseFile(filename, curpath != "" ? util::GetDirname(curpath) : ""); |
| 247 | } |
| 248 | |
| 249 | void Parser::Run(std::string s) { |
| 250 | imp->Cmd(s, "", -1); |
nothing calls this directly
no test coverage detected