Add BACKTICK to expression in grammar (#74)

This commit is contained in:
Casey Rodarmor 2016-11-11 23:11:10 -08:00 committed by GitHub
parent 166c4bf48f
commit 6adf2fda6c

View File

@ -45,6 +45,7 @@ export : 'export' assignment
expression : STRING
| RAW_STRING
| NAME
| BACKTICK
| expression '+' expression
recipe : NAME arguments? ':' dependencies? body?