20 releases
0.3.2 | Jun 6, 2024 |
---|---|
0.3.1-rc0 | Jun 5, 2024 |
0.2.18 | Jun 4, 2024 |
0.2.6 | Apr 24, 2024 |
0.1.0 | Nov 15, 2023 |
#176 in Programming languages
22 downloads per month
Used in scopegraphs-macros
495KB
11K
SLoC
Warning
This software is actively being developed, tested and documented. Most features work, but we cannot guarantee api stability just yet, nor is the documentation as good as we want it to be. If you don't understand something, feel free to either document it for us, or let us know.
This library is not ready for production usage
Scope graphs are an abstraction that allow you to express the complicated name resolution patterns that many programming languages have. Put simply, a scope graph encodes what names are defined in which scopes of a program, and how scopes relate to each other. Then, we can run queries over this graph to create links from usages of names to definitions of names. However, to make name resolution flexible, the building of the graph and the querying over the graph can happen concurrently: we don't need an entire graph before we can start querying it.
This library, and its documentation serve as both a kind of reference implementation of scope graphs, a usable library for your programming language, a tutorial of how to use scope graphs and a tutorial of how you could implement scope graphs yourself.
Research
Scope graphs are based on research. These are some papers that introduce the topic in a more scientific fashion than we will here. That is on purpose: The documentation of this library are meant to be the more informal explanation of scope graphs.
- Néron, P., Tolmach, A., Visser, E., & Wachsmuth, G. (2015). A theory of name resolution. Containing first introduction of scope graphs.
- van Antwerpen, H., Bach Poulsen, C., Rouvoet, A., & Visser, E. (2018). Scopes as types. Presents a refinement of the older scope graphs, which this library is based on.
- Zwaan, A., & van Antwerpen, H. (2023). Scope graphs: The story so far. Provides a more detailed overview of all work that involved scope graphs until the date of publication.
But more research is ongoing! See our research overview page for an overview of all research that involves scope graphs.
Dependencies
~1.3–2.3MB
~44K SLoC