moore_svlog_syntax/
lib.rs

1// Copyright (c) 2016-2021 Fabian Schuiki
2
3//! This crate implements parsing SystemVerilog source files into an abstract
4//! syntax tree and resolving the encountered names.
5
6#[macro_use]
7extern crate log;
8
9pub mod ast;
10pub mod cat;
11pub mod lexer;
12pub mod parser;
13pub mod preproc;
14pub mod token;