File: to_value.hpp

package info (click to toggle)
golang-github-wellington-go-libsass 0.9.2%2Bgit20181130.4ef5b9d-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,128 kB
  • sloc: cpp: 28,607; ansic: 839; makefile: 44
file content (50 lines) | stat: -rw-r--r-- 1,162 bytes parent folder | download | duplicates (3)
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
#ifndef SASS_TO_VALUE_H
#define SASS_TO_VALUE_H

#include "operation.hpp"
#include "sass/values.h"
#include "ast_fwd_decl.hpp"

namespace Sass {

  class To_Value : public Operation_CRTP<Value_Ptr, To_Value> {

    Value_Ptr fallback_impl(AST_Node_Ptr n);

  private:

    Context& ctx;

  public:

    To_Value(Context& ctx)
    : ctx(ctx)
    { }
    ~To_Value() { }
    using Operation<Value_Ptr>::operator();

    Value_Ptr operator()(Argument_Ptr);
    Value_Ptr operator()(Boolean_Ptr);
    Value_Ptr operator()(Number_Ptr);
    Value_Ptr operator()(Color_Ptr);
    Value_Ptr operator()(String_Constant_Ptr);
    Value_Ptr operator()(String_Quoted_Ptr);
    Value_Ptr operator()(Custom_Warning_Ptr);
    Value_Ptr operator()(Custom_Error_Ptr);
    Value_Ptr operator()(List_Ptr);
    Value_Ptr operator()(Map_Ptr);
    Value_Ptr operator()(Null_Ptr);
    Value_Ptr operator()(Function_Ptr);

    // convert to string via `To_String`
    Value_Ptr operator()(Selector_List_Ptr);
    Value_Ptr operator()(Binary_Expression_Ptr);

    // fallback throws error
    template <typename U>
    Value_Ptr fallback(U x) { return fallback_impl(x); }
  };

}

#endif