Welcome to mirror list, hosted at ThFree Co, Russian Federation.

to_value.cpp « src « libsass « src « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3912c55109481cecde8e31292e74967f50955d5b (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#include "sass.hpp"
#include "ast.hpp"
#include "to_value.hpp"

namespace Sass {

  Value_Ptr To_Value::fallback_impl(AST_Node_Ptr n)
  {
    // throw a runtime error if this happens
    // we want a well defined set of possible nodes
    throw std::runtime_error("invalid node for to_value");
  }

  // Custom_Error is a valid value
  Value_Ptr To_Value::operator()(Custom_Error_Ptr e)
  {
    return e;
  }

  // Custom_Warning is a valid value
  Value_Ptr To_Value::operator()(Custom_Warning_Ptr w)
  {
    return w;
  }

  // Boolean is a valid value
  Value_Ptr To_Value::operator()(Boolean_Ptr b)
  {
    return b;
  }

  // Number is a valid value
  Value_Ptr To_Value::operator()(Number_Ptr n)
  {
    return n;
  }

  // Color is a valid value
  Value_Ptr To_Value::operator()(Color_Ptr c)
  {
    return c;
  }

  // String_Constant is a valid value
  Value_Ptr To_Value::operator()(String_Constant_Ptr s)
  {
    return s;
  }

  // String_Quoted is a valid value
  Value_Ptr To_Value::operator()(String_Quoted_Ptr s)
  {
    return s;
  }

  // List is a valid value
  Value_Ptr To_Value::operator()(List_Ptr l)
  {
    List_Obj ll = SASS_MEMORY_NEW(List,
                               l->pstate(),
                               l->length(),
                               l->separator(),
                               l->is_arglist(),
                               l->is_bracketed());
    for (size_t i = 0, L = l->length(); i < L; ++i) {
      ll->append((*l)[i]->perform(this));
    }
    return ll.detach();
  }

  // Map is a valid value
  Value_Ptr To_Value::operator()(Map_Ptr m)
  {
    return m;
  }

  // Null is a valid value
  Value_Ptr To_Value::operator()(Null_Ptr n)
  {
    return n;
  }

  // Function is a valid value
  Value_Ptr To_Value::operator()(Function_Ptr n)
  {
    return n;
  }

  // Argument returns its value
  Value_Ptr To_Value::operator()(Argument_Ptr arg)
  {
    if (!arg->name().empty()) return 0;
    return arg->value()->perform(this);
  }

  // Selector_List is converted to a string
  Value_Ptr To_Value::operator()(Selector_List_Ptr s)
  {
    return SASS_MEMORY_NEW(String_Quoted,
                           s->pstate(),
                           s->to_string(ctx.c_options));
  }

  // Binary_Expression is converted to a string
  Value_Ptr To_Value::operator()(Binary_Expression_Ptr s)
  {
    return SASS_MEMORY_NEW(String_Quoted,
                           s->pstate(),
                           s->to_string(ctx.c_options));
  }

};