SLIDE 14 Bound & Binding Occurrences How to structure names? Distinguish bound and binding
- ccurrences of names. Each bound
- ccurrences refers to a binding
- ccurrence.
You can reason about the naming structure of a program in terms of „this name here is bound there“ name problem solution effects Lexical Scoping Which bound occurrence refers to which binding occurrence? All bound occurrences in a continuous region of the source file bind to the same binding
You can reason about the binding structure statically. name problem solution effects Domain-Specific Scoping Which bound occurrence refers to which binding occurrence? Use domain-specific criteria to match bound to binding
Your binding structure supports your domain integration. name problem solution effects