Sha256: e51057abeeea351fa2629564b3804a54734cc07f5302f7b877e332a9ed3712be

Contents?: true

Size: 974 Bytes

Versions: 32

Compression:

Stored size: 974 Bytes

Contents

#ifndef SASS_SASS_FUNCTIONS_H
#define SASS_SASS_FUNCTIONS_H

#include "sass.h"
#include "environment.hpp"
#include "fn_utils.hpp"

// Struct to hold custom function callback
struct Sass_Function {
  char*            signature;
  Sass_Function_Fn function;
  void*            cookie;
};

// External import entry
struct Sass_Import {
  char* imp_path; // path as found in the import statement
  char *abs_path; // path after importer has resolved it
  char* source;
  char* srcmap;
  // error handling
  char* error;
  size_t line;
  size_t column;
};

// External environments
struct Sass_Env {
  // links to parent frames
  Sass::Env* frame;
};

// External call entry
struct Sass_Callee {
  const char* name;
  const char* path;
  size_t line;
  size_t column;
  enum Sass_Callee_Type type;
  struct Sass_Env env;
};

// Struct to hold importer callback
struct Sass_Importer {
  Sass_Importer_Fn importer;
  double           priority;
  void*            cookie;
};

#endif

Version data entries

32 entries across 22 versions & 5 rubygems

Version Path
zuora_connect_ui-0.8.3 vendor/ruby/2.6.0/gems/sassc-2.2.0/ext/libsass/src/sass_functions.hpp
zuora_connect_ui-0.8.3 vendor/ruby/2.6.0/gems/sassc-2.1.0-x86_64-linux/ext/libsass/src/sass_functions.hpp
sassc-2.2.0 ext/libsass/src/sass_functions.hpp
zuora_connect_ui-0.8.2 vendor/ruby/2.6.0/gems/sassc-2.1.0-x86_64-linux/ext/libsass/src/sass_functions.hpp
sassc-2.1.0-x86_64-linux ext/libsass/src/sass_functions.hpp
sassc-2.1.0 ext/libsass/src/sass_functions.hpp
sassc-2.1.0.pre3-x86_64-linux ext/libsass/src/sass_functions.hpp
sassc-2.1.0.pre3 ext/libsass/src/sass_functions.hpp
sassc-2.1.0.pre2-x86_64-linux ext/libsass/src/sass_functions.hpp
sassc-2.1.0.pre2 ext/libsass/src/sass_functions.hpp
sassc-2.1.0.pre1-x86_64-linux ext/libsass/src/sass_functions.hpp
sassc-2.1.0.pre1 ext/libsass/src/sass_functions.hpp