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