| 84 | StatementList body; |
| 85 | }; |
| 86 | struct FunctionDef |
| 87 | { |
| 88 | std::string name; |
| 89 | std::vector<std::string> parameters; |
| 90 | StatementList body; |
| 91 | }; |
| 92 | struct ReturnStmt |
| 93 | { |
| 94 | std::string expression; |
nothing calls this directly
no outgoing calls
no test coverage detected