| 122 | } |
| 123 | |
| 124 | unsigned int |
| 125 | Expression::func_count(void) const |
| 126 | { |
| 127 | std::vector<const FunctionInvocationUser*> funcs; |
| 128 | get_called_funcs(funcs); |
| 129 | return funcs.size(); |
| 130 | } |
| 131 | |
| 132 | std::string |
| 133 | Expression::to_string(void) const |
no test coverage detected