Coverage Report

Created: 2025-10-28 07:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libsass/src/mapping.hpp
Line
Count
Source
1
#ifndef SASS_MAPPING_H
2
#define SASS_MAPPING_H
3
4
#include "position.hpp"
5
#include "backtrace.hpp"
6
7
namespace Sass {
8
9
  struct Mapping {
10
    Position original_position;
11
    Position generated_position;
12
13
    Mapping(const Position& original_position, const Position& generated_position)
14
0
    : original_position(original_position), generated_position(generated_position) { }
15
  };
16
17
}
18
19
#endif