Sha256: 8c1d24c6832a22176e81cce07b99013a840cbd9f63d68f250fe412a1413b3a7a
Contents?: true
Size: 470 Bytes
Versions: 74
Compression:
Stored size: 470 Bytes
Contents
#ifndef SASS_BACKTRACE_H #define SASS_BACKTRACE_H #include <vector> #include <sstream> #include "file.hpp" #include "position.hpp" namespace Sass { struct Backtrace { ParserState pstate; std::string caller; Backtrace(ParserState pstate, std::string c = "") : pstate(pstate), caller(c) { } }; typedef std::vector<Backtrace> Backtraces; const std::string traces_to_string(Backtraces traces, std::string indent = "\t"); } #endif
Version data entries
74 entries across 57 versions & 15 rubygems