Importateur Sass interne
Voici l'importateur Sass interne :
- // Entrée d'importation externe
- struct Sass_Import {
- char* imp_path; // Chemin tel que trouvé dans l'instruction d'importation
- char *abs_path; // Chemin après que l'importateur l'a résolu
- char* source;
- char* srcmap;
- // Gestion des erreurs
- char* error;
- size_t line;
- size_t column;
- };
-
- // Structure pour conserver le rappel de l'importateur
- struct Sass_Importer {
- Sass_Importer_Fn importer;
- double priority;
- void* cookie;
- };
Dernière mise à jour : Mardi, le 8 octobre 2024