miller/c/dsls
2015-12-14 09:01:48 -05:00
..
filter_dsl_lexer.l whitespace 2015-12-14 09:01:48 -05:00
filter_dsl_parse.y whitespace 2015-12-14 09:01:48 -05:00
filter_dsl_wrapper.c iterate on https://github.com/johnkerl/miller/issues/24 2015-12-05 22:57:03 -05:00
filter_dsl_wrapper.h Initial commit 2015-05-03 16:11:45 -07:00
lemon.c i386 portability 2015-12-06 14:51:16 -05:00
lempar.c Initial commit 2015-05-03 16:11:45 -07:00
Makefile.am fix travis build 2015-10-10 07:10:40 -07:00
Makefile.no-autoconfig makefile doc notes 2015-11-29 20:23:49 -05:00
put_dsl_lexer.l whitespace 2015-12-14 09:01:48 -05:00
put_dsl_parse.y whitespace 2015-12-14 09:01:48 -05:00
put_dsl_wrapper.c iterate on https://github.com/johnkerl/miller/issues/24 2015-12-05 22:57:03 -05:00
put_dsl_wrapper.h Initial commit 2015-05-03 16:11:45 -07:00
README.md possible spelling update 2015-08-26 14:20:44 -07:00

Miller domain-specific languages

These exist for Miller's put and filter functions. The grammars are not at all profound: just parsing 101 as familiar from an introductory compilers course. I use lex and lemon rather than lex and yacc: I find Lemon far more transparent.

Concrete syntax trees (CSTs) are embodied in the lex/lemon files. Abstract syntax trees (ASTs) are in the Miller containers directory.