| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #ifndef BREAK_TYPE_H 2 : #define BREAK_TYPE_H 3 : 4 : #include "../type.h" 5 : #include <memory> 6 : #include <string> 7 : 8 : namespace nicole { 9 : 10 : class BreakType final : public Type { 11 : public: 12 0 : [[nodiscard]] std::string toString() const noexcept override { 13 0 : return "breakType"; 14 0 : } 15 : }; 16 : 17 : } // namespace nicole 18 : 19 : #endif |
| Generated by: LCOV version 2.0-1 |