Struct syntax::parse::ParseSess[][src]

pub struct ParseSess {
    pub span_diagnostic: Handler,
    pub unstable_features: UnstableFeatures,
    pub config: CrateConfig,
    pub missing_fragment_specifiers: Lock<HashSet<Span>>,
    pub raw_identifier_spans: Lock<Vec<Span>>,
    pub non_modrs_mods: Lock<Vec<(Ident, Span)>>,
    // some fields omitted
}

Info about a parsing session.

Fields

Places where raw identifiers were used. This is used for feature gating raw identifiers

Methods

impl ParseSess
[src]

Auto Trait Implementations

impl !Send for ParseSess

impl !Sync for ParseSess