| 831 | { |
| 832 | public: |
| 833 | ChaiScript(std::vector<std::string> t_modulepaths = {}, |
| 834 | std::vector<std::string> t_usepaths = {}, |
| 835 | const std::vector<Options> &t_opts = chaiscript::default_options()) |
| 836 | : ChaiScript_Basic( |
| 837 | chaiscript::Std_Lib::library(), |
| 838 | std::make_unique<parser::ChaiScript_Parser<eval::Noop_Tracer, optimizer::Optimizer_Default>>(), |
| 839 | t_modulepaths, t_usepaths, t_opts) |
| 840 | { |
| 841 | } |
| 842 | }; |
| 843 | } |
| 844 |
nothing calls this directly
no test coverage detected