In computer science, higher-order abstract syntax (abbreviated HOAS) is a technique for the representation of abstract syntax trees for languages with variable binders.
An abstract syntax is abstract because it is represented by mathematical objects that have certain structure by their very nature. For instance, in first-order abstract syntax (FOAS) trees, as commonly used in compilers, the tree structure implies the subexpression relation, meaning that no parentheses are required to disambiguate programs (as they are, in the concrete syntax). HOAS exposes additional structure: the relationship between variables and their binding sites. In FOAS representations, a variable is typically represented with an identifier, with the relation between binding site and use being indicated by using the same identifier. With HOAS, there is no name for the variable; each use of the variable refers directly to the binding site.
There are a number of reasons why this technique is useful. First, it makes the binding structure of a program explicit: just as there is no need to explain operator precedence in a FOAS representation, there is no need to have the rules of binding and scope at hand to interpret a HOAS representation. Second, programs that are alpha-equivalent (differing only in the names of bound variables) have identical representations in HOAS, which can make equivalence checking more efficient.
One mathematical object that could be used to implement HOAS is a graph where variables are associated with their binding sites via edges. Another popular way to implement HOAS (in, for example, compilers) is with de Bruijn indices.
The first programming language which directly supportedλ-bindings in syntax was the higher-order logic programminglanguage λProlog.[1] The paper that introduced the term HOAS [2] usedλProlog code to illustrate it. Unfortunately, when one transfers theterm HOAS from the logic programming to the functional programmingsetting, that term implies the identification of bindings in syntaxwith functions over expressions. In this latter setting, HOAS has adifferent and problematic sense. The term λ-tree syntax has been introduced torefer specifically to the style of representation available in thelogic programming setting.[3] [4] While different in detail, the treatment of bindings in λProlog is similarto their treatment in logical frameworks, elaborated in the next section.
In the domain of logical frameworks, the term higher-order abstract syntax is usually used to refer to a specific representation that uses the binders of the meta-language to encode the binding structure of the object language.
For instance, the logical framework LF has a λ-construct, which has arrow(→) type. As an example, consider we wanted to formalize a very primitive language with untyped expressions, a built-in set of variables, and a let construct (<nowiki>let <var> = <exp> in <exp'></nowiki>
), which allows to bind variables var
with definition exp
in expressions exp'
.In Twelf syntax, we could do as follows:Here, exp
is the type of all expressions and var
the type of all built-in variables (implemented perhaps as natural numbers, which is not shown). The constant v
acts as a casting function and witnesses the fact that variables are expressions. Finally, the constant let
represents let constructs of the form <nowiki>let <var> = <exp> in <exp></nowiki>
: it accepts a variable, an expression (being bound by the variable), and another expression (that the variable is bound within).
The canonical HOAS representation of the same object language would be:In this representation, object level variables do not appear explicitly. The constant let
takes an expression (that is being bound) and a meta-level function exp
→ exp
(the body of the let). This function is the higher-order part: an expression with a free variable isrepresented as an expression with holes that are filled in by the meta-level function when applied. As a concrete example, we would construct the object level expression(assuming the natural constructors for numbers and addition) using the HOAS signature above aswhere [y] e
is Twelf's syntax for the function
λy.e
This specific representation has advantages beyond the ones above: for one, by reusing the meta-level notion of binding, the encoding enjoys properties such as type-preserving substitution without the need to define/prove them. In this way using HOAS can drastically reduce the amount of boilerplate code having to do with binding in an encoding.
Higher-order abstract syntax is generally only applicable when object language variables can be understood as variables in the mathematical sense (that is, as stand-ins for arbitrary members of some domain). This is often, but not always, the case: for instance, there are no advantages to be gained from a HOAS encoding of dynamic scope as it appears in some dialects of Lisp because dynamically scoped variables do not act like mathematical variables.