racket/collects/racket/keyword-transform.rkt
Matthew Flatt b7d5aed8d7 add "alias" and "converted-arguments-variant" properties
The properties appear in the inlining expansion of an application
of a keyword-accepting function, and they're mainly intended for
use by Typed Racket.

The property keys are hidden, so that the property value can be
trusted as originating from `racket/base'. The accessor functions are
`syntax-procedure-alias-property' and
`syntax-procedure-converted-arguments-property' from
`racket/keyword-transform'.
2012-05-17 10:58:22 -06:00

6 lines
158 B
Racket

#lang racket/base
(require (for-template "private/kw.rkt"))
(provide syntax-procedure-alias-property
syntax-procedure-converted-arguments-property)