#include "FunctionPropertySequences.h" #include "GenericStringPropertySequence.h" #include "Parsing/Menu/MenuMatcherFactory.h" using namespace menu; namespace menu::function_properties { } using namespace function_properties; FunctionPropertySequences::FunctionPropertySequences(std::vector>& allSequences, std::vector& scopeSequences) : AbstractPropertySequenceHolder(allSequences, scopeSequences) { } void FunctionPropertySequences::AddSequences(FeatureLevel featureLevel) { AddSequence(std::make_unique("name", [](const MenuFileParserState* state, const std::string& value) { state->m_current_function->m_name = value; })); }