| 99 | } |
| 100 | |
| 101 | static const string findPath(const SymbolTable &st, const string &ident) |
| 102 | { |
| 103 | auto it = st.find(ident); |
| 104 | if (it != st.end()) |
| 105 | { |
| 106 | return it->second.path; |
| 107 | } |
| 108 | return empty_string; |
| 109 | } |
| 110 | |
| 111 | static string extractExpression(const vector<string> &model, |
| 112 | const Location &loc) |
no test coverage detected