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/null.h')
-rw-r--r--node_modules/node-sass/src/sass_types/null.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/node_modules/node-sass/src/sass_types/null.h b/node_modules/node-sass/src/sass_types/null.h
deleted file mode 100644
index 15b64ba..0000000
--- a/node_modules/node-sass/src/sass_types/null.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef SASS_TYPES_NULL_H
-#define SASS_TYPES_NULL_H
-
-#include <nan.h>
-#include "value.h"
-
-namespace SassTypes
-{
- class Null : public SassTypes::Value {
- public:
- static Null& get_singleton();
- static v8::Local<v8::Function> get_constructor();
-
- Sass_Value* get_sass_value();
- v8::Local<v8::Object> get_js_object();
-
- static NAN_METHOD(New);
-
- private:
- Null();
-
- Nan::Persistent<v8::Object> js_object;
-
- static Nan::Persistent<v8::Function> constructor;
- static bool constructor_locked;
- };
-}
-
-#endif