Sha256: 382b7dca9daee5f8c3a482f2b43cbae804b3067585faa94c18ec8a8f4a4fc07f
Contents?: true
Size: 1.31 KB
Versions: 26
Compression:
Stored size: 1.31 KB
Contents
#ifndef SASS_OPERATORS_H #define SASS_OPERATORS_H #include "values.hpp" #include "sass/values.h" namespace Sass { namespace Operators { // equality operator using AST Node operator== bool eq(Expression_Obj, Expression_Obj); bool neq(Expression_Obj, Expression_Obj); // specific operators based on cmp and eq bool lt(Expression_Obj, Expression_Obj); bool gt(Expression_Obj, Expression_Obj); bool lte(Expression_Obj, Expression_Obj); bool gte(Expression_Obj, Expression_Obj); // arithmetic for all the combinations that matter Value* op_strings(Sass::Operand, Value&, Value&, struct Sass_Inspect_Options opt, const ParserState& pstate, bool delayed = false); Value* op_colors(enum Sass_OP, const Color_RGBA&, const Color_RGBA&, struct Sass_Inspect_Options opt, const ParserState& pstate, bool delayed = false); Value* op_numbers(enum Sass_OP, const Number&, const Number&, struct Sass_Inspect_Options opt, const ParserState& pstate, bool delayed = false); Value* op_number_color(enum Sass_OP, const Number&, const Color_RGBA&, struct Sass_Inspect_Options opt, const ParserState& pstate, bool delayed = false); Value* op_color_number(enum Sass_OP, const Color_RGBA&, const Number&, struct Sass_Inspect_Options opt, const ParserState& pstate, bool delayed = false); }; } #endif
Version data entries
26 entries across 17 versions & 2 rubygems