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

error.h « sass_types « src « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01786fdaa8c06315d1cc2d9d5d691e91b98d8156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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