a racket library for adding hygiene to reader extensions
Go to file
2016-06-29 01:08:56 -04:00
hygienic-reader-extension add a function to get lang-reader values from module paths 2016-06-29 01:08:56 -04:00
lang-extension move lang-reader.rkt to lang-reader directory 2016-06-29 00:53:58 -04:00
lang-reader add a function to get lang-reader values from module paths 2016-06-29 01:08:56 -04:00
.gitignore add .gitignore 2016-06-17 10:18:48 -04:00
.travis.yml add .travis.yml 2016-06-18 16:01:05 -04:00
info.rkt add rackunit-lib to build-deps 2016-06-25 12:47:30 -04:00
README.md add link to documentation 2016-06-19 19:26:56 -04:00

hygienic-reader-extension Build Status

A racket library for adding hygiene to reader extensions

documentation: http://docs.racket-lang.org/hygienic-reader-extension/index.html

(extend-reader reader-proc extend-readtable)    (-> A ... Any)
  reader-proc      : (-> A ... Any)
  extend-readtable : (-> Readtable #:outer-scope (-> Syntax Syntax) Readtable)

Extends the given reader-proc by making a function that calls it with the current-readtable parameter extended with extend-readtable.

In addition to a readtable, it passes an outer-scope argument to the extend-readtable function, which that function can pass into the readtable procedures it adds. Those readtable procedures should use the hygienic-app function to transform any input syntax objects into the output syntax.

(hygienic-app proc stx #:outer-scope outer-scope)    Syntax
  proc        : (-> Syntax Syntax)
  stx         : Syntax
  outer-scope : (-> Syntax Syntax)

Applies proc to stx, but with extra scopes added to the input and output to make it hygienic.

This is meant to be used within a readtable-proc added using the extend-reader function, and the outer-scope argument should come from the outer-scope argument passed to the extend-readtable argument to that function.