sway-parse 0.25.2

Sway's parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use {
    crate::{
        brackets::ParseBracket,
        error::{ParseError, ParseErrorKind},
        expr::op_code::parse_instruction,
        parse::{Parse, ParseToEnd, Peek},
        parser::{ErrorEmitted, ParseResult, Parser, ParserConsumed, Peeker},
    },
    extension_trait::extension_trait,
    num_bigint::BigUint,
    std::{
        fmt, marker::PhantomData, mem, ops::ControlFlow, path::PathBuf, str::FromStr, sync::Arc,
    },
    sway_types::{Ident, Span, Spanned},
    thiserror::Error,
    unicode_xid::UnicodeXID,
};