Crate scopegraphs

source ·
Expand description

Crates.io MSRV docs.rs GitHub Actions Workflow Status

§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.

But more research is ongoing! See our research overview page for an overview of all research that involves scope graphs.

§This Documentation

Modules§

  • This module contains several utilities to guarantee query stability.
  • conceptsdocumentation
    Concepts of scope graphs
  • This module contains some generic containers for data used by the resolution algorithm.
  • patternsdocumentation
    Common patterns in scope graphs
  • Render scope graphs to graphviz .dot files.
  • This module contains code to query scope graphs.

Macros§

Structs§

  • A regex automaton is a compiled regular expression.
  • Matched regular expressions that are compiled at runtime.
  • Representation of scopes (nodes in the scope graph).
  • Scope Graph data structure.
  • Holds data for a ScopeGraph. Required to construct a ScopeGraph.

Enums§

  • An error that can ocur while parsing a regular expression.
  • A regular expression that can specify a path through a scope graph.

Traits§

Functions§

Derive Macros§