* Obtains a table_array for a given key, if possible. Will resolve * "qualified keys". */
| 1427 | * "qualified keys". |
| 1428 | */ |
| 1429 | std::shared_ptr<table_array> |
| 1430 | get_table_array_qualified(const std::string& key) const |
| 1431 | { |
| 1432 | if (!contains_qualified(key)) |
| 1433 | return nullptr; |
| 1434 | return get_qualified(key)->as_table_array(); |
| 1435 | } |
| 1436 | |
| 1437 | /** |
| 1438 | * Helper function that attempts to get a value corresponding |
nothing calls this directly
no test coverage detected