ginko 0.0.6

A device-tree source parser and analyzer
Documentation
/// Module for analyzing Device-Tree Source files
mod analysis;
mod ast;
mod data;
mod diagnostics;
mod error_codes;
mod import_guard;
mod parser;
mod project;
mod reader;
#[cfg(test)]
mod test;
mod tokens;
mod visitor;

pub use ast::{AnyDirective, Node, NodeItem, NodePayload, Primary};
pub use data::{FileType, HasSpan, Position, Span};
pub use diagnostics::{Diagnostic, DiagnosticPrinter, Severity};
pub use error_codes::{ErrorCode, SeverityMap};
pub use parser::Parser;
pub use parser::ParserContext;
pub use project::Project;
pub use visitor::ItemAtCursor;