Get list of callable functions and corresponding function types.
| 238 | |
| 239 | /// Get list of callable functions and corresponding function types. |
| 240 | std::vector<std::pair<std::string, const AST::FunctionType &>> |
| 241 | getFunctionList() const { |
| 242 | std::shared_lock Lock(Mutex); |
| 243 | return unsafeGetFunctionList(); |
| 244 | } |
| 245 | |
| 246 | /// Get list of callable component functions and corresponding function types. |
| 247 | std::vector<std::pair<std::string, const AST::Component::FuncType &>> |
no outgoing calls
no test coverage detected