stack-graphs 0.14.1

Name binding for arbitrary programming languages
Documentation
// -*- coding: utf-8 -*-
// ------------------------------------------------------------------------------------------------
// Copyright © 2021, stack-graphs authors.
// Licensed under either of Apache License, Version 2.0, or MIT license, at your option.
// Please see the LICENSE-APACHE or LICENSE-MIT files in this distribution for license details.
// ------------------------------------------------------------------------------------------------

// increase recursion limit for json macro
#![recursion_limit = "256"]

pub mod test_graphs;

mod arena;
mod c;
mod can_create_graph;
mod can_find_local_nodes;
mod can_find_node_partial_paths_in_database;
mod can_find_partial_paths_in_file;
mod can_find_root_partial_paths_in_database;
mod can_jump_to_definition;
mod can_jump_to_definition_with_forward_partial_path_stitching;
mod cycles;
mod graph;
mod partial;
#[cfg(feature = "serde")]
mod serde;
mod stats;
mod stitching;
#[cfg(feature = "storage")]
mod storage;
mod util;