Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/diplomat_core/src/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 451 B image not shown  

Quelle  lib.rs   Sprache: unbekannt

 
//! The Diplomat core module contains common logic between
//! the macro expansion and code generation. Right now, this
//! is primarily the AST types that Diplomat generates while
//! extracting APIs.

#![allow(clippy::needless_lifetimes)] // we use named lifetimes for clarity
#![warn(clippy::exhaustive_structs, clippy::exhaustive_enums)]

pub mod ast;
#[cfg(feature = "hir")]
pub mod hir;

mod environment;

pub use environment::{Env, ModuleEnv};

[ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet)  ]