Last active
September 15, 2016 03:08
-
-
Save chrislloyd/9e02e50601f0fd291161eb139b7b4e14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Arithmetic { | |
Exp | |
= ComposeExp ("," ComposeExp ) * end | |
ComposeExp | |
= exportIdent + Source ? | |
Source | |
= "from" url | |
exportIdent | |
= ~ "from" alnum + | |
url | |
= quote ( alnum | "." | "/" ) * quote | |
quote | |
= "\"" | |
| "'" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// separated by \n\n, used like: | |
// composes: XXX; | |
red | |
large red | |
red from "./colors.css" | |
large red from "./styles.css" | |
large from "./type.css", red from "./colors.css" | |
large from "./type.css", | |
red from "./colors.css" | |
large, red | |
large, red from "./colors.css" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment