pub struct Parser<'a> {
code: &'a [u8],
pos: usize,
state: State<'a>,
}
Fields§
§code: &'a [u8]
§pos: usize
§state: State<'a>
Implementations§
source§impl Parser<'_>
impl Parser<'_>
fn remaining_bytes(&self) -> usize
fn get_next_byte(&mut self) -> Result<u8, AmlParseError>
fn peek_next_byte(&self) -> Result<u8, AmlParseError>
fn forward(&mut self, n: usize) -> Result<(), AmlParseError>
fn backward(&mut self, n: usize) -> Result<(), AmlParseError>
fn get_pkg_length(&mut self) -> Result<usize, AmlParseError>
fn get_inner_parser(&mut self) -> Result<Parser<'_>, AmlParseError>
sourcefn clone_parser(&mut self) -> Parser<'_>
fn clone_parser(&mut self) -> Parser<'_>
Renamed to not be confused with Clone::clone
fn check_empty(&self) -> Result<(), AmlParseError>
fn parse_term(&mut self) -> Result<AmlTerm, AmlParseError>
fn predict_possible_args( &mut self, expect_data_after: bool, name: &str ) -> usize
fn try_parse_term( &mut self, opcode: u8 ) -> Result<Option<AmlTerm>, AmlParseError>
sourcefn parse_term_arg_non_method_arg(&mut self) -> Result<TermArg, AmlParseError>
fn parse_term_arg_non_method_arg(&mut self) -> Result<TermArg, AmlParseError>
similar to Self::parse_term_arg
, but cannot call methods, as in some places method calls are not allowed
TODO: This should be removed, as in general a method call is a valid term arg, its just
we break some parts due to us not knowing if a name is a method or not, and prediction predicts wrong and messes up
This happens for +
and >>
and <<
, cases I have seen and know of bugs in the parsing
sourcefn parse_term_arg_last(&mut self) -> Result<TermArg, AmlParseError>
fn parse_term_arg_last(&mut self) -> Result<TermArg, AmlParseError>
similar to Self::parse_term_arg
, but doesn’t expect to have data after it, i.e. last in statements or something similar
fn parse_term_arg(&mut self) -> Result<TermArg, AmlParseError>
fn parse_package_element( &mut self ) -> Result<PackageElement<UnresolvedDataObject>, AmlParseError>
fn parse_eisa_id(id: u32) -> String
fn try_parse_data_object( &mut self ) -> Result<Option<UnresolvedDataObject>, AmlParseError>
fn parse_term_arg_general( &mut self, can_call_method: bool, expect_data_after: bool ) -> Result<TermArg, AmlParseError>
fn try_parse_name(&mut self) -> Result<Option<String>, AmlParseError>
fn parse_name(&mut self) -> Result<String, AmlParseError>
fn try_parse_local(&mut self, lead: u8) -> Result<Option<u8>, AmlParseError>
fn try_parse_arg(&mut self, lead: u8) -> Result<Option<u8>, AmlParseError>
fn parse_target(&mut self) -> Result<Box<Target>, AmlParseError>
fn parse_term_list(&mut self) -> Result<Vec<AmlTerm>, AmlParseError>
fn parse_fields_list_and_flags( self ) -> Result<(u8, Vec<FieldElement>), AmlParseError>
fn parse_root(&mut self) -> Result<AmlCode, AmlParseError>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Parser<'a>
impl<'a> Send for Parser<'a>
impl<'a> Sync for Parser<'a>
impl<'a> Unpin for Parser<'a>
impl<'a> !UnwindSafe for Parser<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.