This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/bulma/node_modules/node-sass/src/sass_types/error.h

20 lines
460 B
C++

#ifndef SASS_TYPES_ERROR_H
#define SASS_TYPES_ERROR_H
#include <nan.h>
#include "sass_value_wrapper.h"
namespace SassTypes
{
class Error : public SassValueWrapper<Error> {
public:
Error(Sass_Value*);
static char const* get_constructor_name() { return "SassError"; }
static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **);
static void initPrototype(v8::Local<v8::FunctionTemplate>);
};
}
#endif