MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / ParameterList

Class ParameterList

InterfaceCompiler/main.cpp:106–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104};
105
106class ParameterList final : public Statement {
107public:
108 std::vector<std::pair<Type, std::string>> parameters;
109
110 ParameterList(){
111 type = StatementParameterList;
112 }
113
114 ParameterList(const std::vector<std::pair<Type, std::string>>& params){
115 type = StatementParameterList;
116
117 parameters = params;
118 }
119};
120
121class ASynchronousMethod final : public Statement{
122public:

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected