MrShi
2 天以前 640c489a713a54041eb63404592df3599a1777e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef SASS_SOURCE_MAP_H
#define SASS_SOURCE_MAP_H
 
#include <string>
#include <vector>
 
#include "ast_fwd_decl.hpp"
#include "base64vlq.hpp"
#include "position.hpp"
#include "mapping.hpp"
 
#define VECTOR_PUSH(vec, ins) vec.insert(vec.end(), ins.begin(), ins.end())
#define VECTOR_UNSHIFT(vec, ins) vec.insert(vec.begin(), ins.begin(), ins.end())
 
namespace Sass {
 
  class Context;
  class OutputBuffer;
 
  class SourceMap {
 
  public:
    std::vector<size_t> source_index;
    SourceMap();
    SourceMap(const std::string& file);
 
    void append(const Offset& offset);
    void prepend(const Offset& offset);
    void append(const OutputBuffer& out);
    void prepend(const OutputBuffer& out);
    void add_open_mapping(const AST_Node_Ptr node);
    void add_close_mapping(const AST_Node_Ptr node);
 
    std::string render_srcmap(Context &ctx);
    ParserState remap(const ParserState& pstate);
 
  private:
 
    std::string serialize_mappings();
 
    std::vector<Mapping> mappings;
    Position current_position;
public:
    std::string file;
private:
    Base64VLQ base64vlq;
  };
 
  class OutputBuffer {
    public:
      OutputBuffer(void)
      : buffer(""),
        smap()
      { }
    public:
      std::string buffer;
      SourceMap smap;
  };
 
}
 
#endif