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
#!/usr/bin/env node | |
/* | |
* File watch and exec command cli tool. | |
* | |
* Example | |
* | |
* $ watcher *.less -- lessc style.less style.css | |
* | |
*/ |
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
Index: defs/lex.c.src | |
=================================================================== | |
--- defs/lex.c.src (revision 28816) | |
+++ defs/lex.c.src (working copy) | |
@@ -49,5 +49,6 @@ | |
when, {keyword_when, keyword_when}, EXPR_VALUE | |
while, {keyword_while, modifier_while}, EXPR_VALUE | |
yield, {keyword_yield, keyword_yield}, EXPR_ARG | |
+pass, {keyword_pass, keyword_pass}, EXPR_VALUE | |
%% |