Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 618 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 618 Bytes

hoas-with-names

Represent functions using higher-order abstract syntax (HOAS) using macros to save names.

To try this out, launch sbt and type the run command. This will show the reification of the terms in NamedHoasUsage.scala, which preserves user-specified names! However, those names are there for strictly cosmetic purposes - they do not represent the binding structure accurately.

If you're curious about the implementation, take a look at macros/Macros.scala.

Implementation note: currently this uses Scala 2.11 macros and quasiquotes.