| 119 | }; |
| 120 | |
| 121 | class ASynchronousMethod final : public Statement{ |
| 122 | public: |
| 123 | std::string methodName; |
| 124 | |
| 125 | ParameterList parameters; |
| 126 | |
| 127 | ASynchronousMethod(const std::string& name){ |
| 128 | methodName = name; |
| 129 | |
| 130 | type = StatementAsynchronousMethod; |
| 131 | } |
| 132 | }; |
| 133 | |
| 134 | class SynchronousMethod final : public Statement{ |
| 135 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected