Initial commit
[yaffs-website] / node_modules / node-sass / src / sass_types / error.h
1 #ifndef SASS_TYPES_ERROR_H
2 #define SASS_TYPES_ERROR_H
3
4 #include <nan.h>
5 #include "sass_value_wrapper.h"
6
7 namespace SassTypes
8 {
9   class Error : public SassValueWrapper<Error> {
10     public:
11       Error(Sass_Value*);
12       static char const* get_constructor_name() { return "SassError"; }
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 }
18
19 #endif