diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-14 13:27:06 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-14 13:27:06 -0700 |
commit | 0592949de3e274b7d9700ec74466b541055c3bca (patch) | |
tree | 7782121888bf42e1719834cf23594b51bb3ce4a4 /parser.y | |
parent | 96f072cfdb5d1eac3e32dbdb15704b0a32258a37 (diff) | |
download | txr-0592949de3e274b7d9700ec74466b541055c3bca.tar.gz txr-0592949de3e274b7d9700ec74466b541055c3bca.tar.bz2 txr-0592949de3e274b7d9700ec74466b541055c3bca.zip |
Allow quasi-quoting over hash table literals,
to express dynamic hash table construction
* eval.c (expand_qquote): Recognize hash-construct
forms: expand the hash arguments and pairs separately,
then rewrite to a new hash-construct form.
(eval-init): hash-construct intrinsic function added.
* hash.c (hash_construct_s): New symbol variable.
(hash_construct): New function.
(hash_init): Initialize hash_construct_s.
* hash.h (hash_construct_s, hash_construct): Declared.
* parser.y (hash): Rule rewritten to emit either a literal
hash table object, or a hash-construct form, based on
whether quasiquote unquotes occur within the syntax.
(hash_from_notation): Function removed.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 23 |
1 files changed, 8 insertions, 15 deletions
@@ -51,6 +51,7 @@ static val o_elems_transform(val output_form); static val define_transform(val define_form); static val lit_char_helper(val litchars); static val optimize_text(val text_form); +static val unquotes_occur(val quoted_form); static val choose_quote(val quoted_form); static wchar_t char_from_name(wchar_t *name); static val hash_from_notation(val notation); @@ -671,7 +672,13 @@ o_var : IDENT { $$ = list(var_s, intern(string_own($1), nil), vector : '#' list { $$ = rlcp(vector_list($2), $2); } ; -hash : HASH_H list { $$ = rlcp(hash_from_notation($2), num($1)); } +hash : HASH_H list { if (unquotes_occur($2)) + $$ = rlcp(cons(hash_construct_s, $2), + num($1)); + else + $$ = rlcp(hash_construct(first($2), + rest($2)), + num($1)); } ; list : '(' exprs ')' { $$ = rl($2, num($1)); } @@ -1074,19 +1081,6 @@ static wchar_t char_from_name(wchar_t *name) return L'!'; /* code meaning not found */ } -static val hash_from_notation(val notation) -{ - val hash = hashv(first(notation)); - val iter = rest(notation); - - for (; iter; iter = cdr(iter)) { - val entry = car(iter); - sethash(hash, first(entry), second(entry)); - } - - return hash; -} - val get_spec(void) { return parsed_spec; @@ -1163,4 +1157,3 @@ void yybadtoken(int tok, val context) else yyerrorf(lit("unexpected ~s"), chr(tok), nao); } - |