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

values.hpp « src « libsass « src « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f78ca128110e28f4bfacab1d5279350900f425bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SASS_VALUES_H
#define SASS_VALUES_H

#include "ast.hpp"

namespace Sass {

  union Sass_Value* ast_node_to_sass_value (const Expression_Ptr val);
  Value_Ptr sass_value_to_ast_node (const union Sass_Value* val);

}
#endif