Section courante

A propos

Section administrative du site

Importateur Sass interne

Voici l'importateur Sass interne :

  1. // Entrée d'importation externe
  2. struct Sass_Import {
  3.   char* imp_path; // Chemin tel que trouvé dans l'instruction d'importation
  4.   char *abs_path; // Chemin après que l'importateur l'a résolu
  5.   char* source;
  6.   char* srcmap;
  7.   // Gestion des erreurs
  8.   char* error;
  9.   size_t line;
  10.   size_t column;
  11. };
  12.  
  13. // Structure pour conserver le rappel de l'importateur
  14. struct Sass_Importer {
  15.   Sass_Importer_Fn importer;
  16.   double           priority;
  17.   void*            cookie;
  18. };


Dernière mise à jour : Mardi, le 8 octobre 2024