Initial commit
[yaffs-website] / node_modules / node-sass / src / sass_types / list.h
1 #ifndef SASS_TYPES_LIST_H
2 #define SASS_TYPES_LIST_H
3
4 #include <nan.h>
5 #include "sass_value_wrapper.h"
6
7 namespace SassTypes
8 {
9   class List : public SassValueWrapper<List> {
10     public:
11       List(Sass_Value*);
12       static char const* get_constructor_name() { return "SassList"; }
13       static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **);
14
15       static void initPrototype(v8::Local<v8::FunctionTemplate>);
16
17       static NAN_METHOD(GetValue);
18       static NAN_METHOD(SetValue);
19       static NAN_METHOD(GetSeparator);
20       static NAN_METHOD(SetSeparator);
21       static NAN_METHOD(GetLength);
22   };
23 }
24
25 #endif