sqry-lang-haskell 7.1.5

Haskell language plugin for sqry
Documentation
1
2
3
4
5
6
7
8
//! Relations module for Haskell - Graph-based code analysis
//!
//! No new semantics here. New behaviour must go via `sqry_core::graph::GraphBuilder` and the language-specific `*GraphBuilder` (see this module's export) to build `CodeGraph`.

pub mod graph_builder;
pub mod type_extractor;

pub use graph_builder::HaskellGraphBuilder;