1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 16:51:15 +02:00

* Parser numbers again.

* Include missing files in distributions.
This commit is contained in:
Eelco Dolstra 2004-01-30 17:06:03 +00:00
parent c625718513
commit 619f20775d
3 changed files with 6 additions and 2 deletions

View file

@ -85,6 +85,7 @@ expr_select
expr_simple
: ID { $$ = ATmake("Var(<term>)", $1); }
| INT { $$ = ATmake("Int(<term>)", $1); }
| STR { $$ = ATmake("Str(<term>)", $1); }
| PATH { $$ = ATmake("Path(<term>)", absParsedPath(data, $1)); }
| URI { $$ = ATmake("Uri(<term>)", $1); }