| 24459 | } |
| 24460 | |
| 24461 | object require_file(const std::string& key, const std::string& filename, bool create_global = true, load_mode mode = load_mode::any) { |
| 24462 | auto action = [this, &filename, &mode]() { |
| 24463 | stack::script_file(L, filename, mode); |
| 24464 | }; |
| 24465 | return require_core(key, action, create_global); |
| 24466 | } |
| 24467 | |
| 24468 | void clear_package_loaders() { |
| 24469 | optional<table> maybe_package = this->global["package"]; |
nothing calls this directly
no test coverage detected