1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SNGCPP_SYMBOLS_LAMBDA_EXPRESSION_SYMBOL_INCLUDED
 7 #define SNGCPP_SYMBOLS_LAMBDA_EXPRESSION_SYMBOL_INCLUDED
 8 #include <sngcpp/symbols/ContainerSymbol.hpp>
 9 
10 namespace sngcpp { namespace symbols {
11 
12 class LambdaExpressionSymbol public ContainerSymbol
13 {
14 public:
15     LambdaExpressionSymbol(const Span& span_);
16     std::u32string KindStr() override { return U"lambda"; }
17     std::unique_ptr<sngxml::dom::Element> CreateElement() override;
18 };
19 
20 } } // namespace sngcpp::symbols
21 
22 #endif // SNGCPP_SYMBOLS_LAMBDA_EXPRESSION_SYMBOL_INCLUDED