| 2082 | } |
| 2083 | |
| 2084 | std::set<std::string> |
| 2085 | parser_get_symbols (struct amrex_parser* parser) |
| 2086 | { |
| 2087 | std::set<std::string> symbols; |
| 2088 | std::set<std::string> local_symbols; |
| 2089 | parser_ast_get_symbols(parser->ast, symbols, local_symbols); |
| 2090 | for (auto const& ls : local_symbols) { |
| 2091 | symbols.erase(ls); |
| 2092 | } |
| 2093 | return symbols; |
| 2094 | } |
| 2095 | |
| 2096 | std::map<std::string,int> |
| 2097 | parser_get_user_functions (struct amrex_parser* parser) |
no test coverage detected