summaryrefslogtreecommitdiffstats
path: root/sass
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2012-08-10 15:10:08 +0300
committerHenri Sara <hesara@vaadin.com>2012-08-10 15:10:08 +0300
commite781da64604db322e3c766413d6649fbf88af3cd (patch)
tree86cf0967f4aa2e053edf6d243d781455c0b06ef2 /sass
parent239ce71f498fcdf2809c5561bf5028bf216265ca (diff)
downloadvaadin-framework-e781da64604db322e3c766413d6649fbf88af3cd.tar.gz
vaadin-framework-e781da64604db322e3c766413d6649fbf88af3cd.zip
Copy README file to SASS source tree (#9223)
Diffstat (limited to 'sass')
-rw-r--r--sass/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/sass/README b/sass/README
new file mode 100644
index 0000000000..4d9482763f
--- /dev/null
+++ b/sass/README
@@ -0,0 +1,11 @@
+This project compiles SCSS into CSS.
+It parses the SCSS into a tree.
+
+Classes
+=======
+SassCompiler: This is the main class that can be run from command line. First parameter is for a scss file to be compiled. Second parameter is optional and is a reference to a file where you want the compiled css. If file doesn't exist, it will be deleted. If file exists, it will be deleted and recreated. If second argument is left out, the css will be printed into standard out.
+ScssStylesheet: When Scss/Css is parsed in, it will be represented in memory as this file. Reference is got through static get(File file) where file is input.
+Parser: A JavaCC compiled java class that parses the input and notifies the DocumentHandler on what nodes it encounters.
+Parser.jj: Source for the Parser class.
+SCSSDocumentHandlerImpl: Class that takes in calls from parser and creates nodes into ScssStylesheet based on those calls.
+Node package: All the nodes representing the Scss/Css in tree format \ No newline at end of file