add immutable hash constructors and selectors to #lang info

This commit is contained in:
Robby Findler 2013-09-03 13:16:07 -05:00
parent b69e909f13
commit 85770c3cf2
2 changed files with 4 additions and 1 deletions

View File

@ -29,6 +29,7 @@ grammar of @racket[_info-module]:
#:literals (info lib setup/infotab module define quote quasiquote
cons car cdr list list* reverse append
string-append path->string build-path
make-immutable-hash hash hash-set hash-set* hash-remove hash-clear hash-update
collection-path
system-library-subpath)
[info-module (module info info-mod-path
@ -53,6 +54,7 @@ grammar of @racket[_info-module]:
[info-primitive cons car cdr list
list* reverse append
string-append
make-immutable-hash hash hash-set hash-set* hash-remove hash-clear hash-update
path->string build-path collection-path
system-library-subpath]
]

View File

@ -62,7 +62,8 @@
#%app #%datum #%top
define quote
list cons car cdr quasiquote unquote unquote-splicing
list* append reverse
list* append reverse
make-immutable-hash hash hash-set hash-set* hash-remove hash-clear hash-update
string-append
path->string build-path collection-path
system-library-subpath