| 244 | } |
| 245 | |
| 246 | void Function::addConstant(unique_ptr<Value> &&c) { |
| 247 | constants.emplace_back(std::move(c)); |
| 248 | } |
| 249 | |
| 250 | Value* Function::getGlobalVar(string_view name) const { |
| 251 | for (auto &c : constants) { |
no outgoing calls
no test coverage detected