scopegraphs 0.3.3

A well-documented port of scopegraphs to Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains some generic containers for data used by the resolution algorithm.
//!
//! Using these interfaces, the resolution algorithms can deal with custom behavior introduced
//! by [`Completeness`](crate::completeness::Completeness) implementations.

mod scope;
pub use scope::*;

mod path;
pub use path::*;

mod env;
pub use env::*;