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

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/node-sass/src/sass_types/color.h')
-rw-r--r--node_modules/node-sass/src/sass_types/color.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/node_modules/node-sass/src/sass_types/color.h b/node_modules/node-sass/src/sass_types/color.h
deleted file mode 100644
index 1bf9043..0000000
--- a/node_modules/node-sass/src/sass_types/color.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef SASS_TYPES_COLOR_H
-#define SASS_TYPES_COLOR_H
-
-#include <nan.h>
-#include "sass_value_wrapper.h"
-
-#if defined(__GNUC__) && __GNUC__ >= 7
-#define NODE_SASS_FALLTHROUGH __attribute__ ((fallthrough))
-#else
-#define NODE_SASS_FALLTHROUGH
-#endif
-
-namespace SassTypes
-{
- class Color : public SassValueWrapper<Color> {
- public:
- Color(Sass_Value*);
- static char const* get_constructor_name() { return "SassColor"; }
- static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **);
-
- static void initPrototype(v8::Local<v8::FunctionTemplate>);
-
- static NAN_METHOD(GetR);
- static NAN_METHOD(GetG);
- static NAN_METHOD(GetB);
- static NAN_METHOD(GetA);
- static NAN_METHOD(SetR);
- static NAN_METHOD(SetG);
- static NAN_METHOD(SetB);
- static NAN_METHOD(SetA);
- };
-}
-
-#endif