LCOV - code coverage report
Current view: top level - inc/tables - symbol.h (source / functions) Coverage Total Hit
Test: coverage.info Lines: 0.0 % 2 0
Test Date: 2025-04-18 15:53:49 Functions: 0.0 % 2 0

            Line data    Source code
       1              : #ifndef SYMBOL_H
       2              : #define SYMBOL_H
       3              : 
       4              : #include <string>
       5              : namespace nicole {
       6              : 
       7              : class Symbol {
       8              : protected:
       9              :     std::string id_;
      10              : 
      11              : public:
      12            0 :     explicit Symbol(const std::string& id) noexcept : id_{id} {}
      13              : 
      14            0 :     [[nodiscard]] const std::string& id() const noexcept { return id_; }
      15              : };
      16              : 
      17              : }
      18              : 
      19              : #endif
        

Generated by: LCOV version 2.0-1