| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #ifndef NICOLE_H 2 : #define NICOLE_H 3 : 4 : #include "compiler.h" 5 : 6 : namespace nicole { 7 : 8 : class Nicole final : public Compiler { 9 : public: 10 0 : explicit Nicole(const std::shared_ptr<Sintax> &sintax) noexcept : Compiler(sintax) {} 11 : 12 : [[nodiscard]] std::expected<std::monostate, Error> 13 : compile(const Options &options) const noexcept override; 14 : }; 15 : 16 : } // namespace nicole 17 : 18 : #endif |
| Generated by: LCOV version 2.0-1 |