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/libsass/src/listize.hpp')
-rw-r--r--node_modules/node-sass/src/libsass/src/listize.hpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/node_modules/node-sass/src/libsass/src/listize.hpp b/node_modules/node-sass/src/libsass/src/listize.hpp
deleted file mode 100644
index 9716ebe..0000000
--- a/node_modules/node-sass/src/libsass/src/listize.hpp
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef SASS_LISTIZE_H
-#define SASS_LISTIZE_H
-
-#include <vector>
-#include <iostream>
-
-#include "ast.hpp"
-#include "context.hpp"
-#include "operation.hpp"
-#include "environment.hpp"
-
-namespace Sass {
-
- struct Backtrace;
-
- class Listize : public Operation_CRTP<Expression_Ptr, Listize> {
-
- Expression_Ptr fallback_impl(AST_Node_Ptr n);
-
- public:
- Listize();
- ~Listize() { }
-
- Expression_Ptr operator()(Selector_List_Ptr);
- Expression_Ptr operator()(Complex_Selector_Ptr);
- Expression_Ptr operator()(Compound_Selector_Ptr);
-
- template <typename U>
- Expression_Ptr fallback(U x) { return fallback_impl(x); }
- };
-
-}
-
-#endif