pub struct VbNetParser<'config> { /* private fields */ }Expand description
VB.NET parser
Implementations§
Source§impl<'config> VbNetParser<'config>
impl<'config> VbNetParser<'config>
Sourcepub fn new(config: &'config VbNetLanguage) -> Self
pub fn new(config: &'config VbNetLanguage) -> Self
Creates a new VB.NET parser
Trait Implementations§
Source§impl<'config> Parser<VbNetLanguage> for VbNetParser<'config>
impl<'config> Parser<VbNetLanguage> for VbNetParser<'config>
Source§fn parse<'a, S: Source + ?Sized>(
&self,
text: &'a S,
edits: &[TextEdit],
cache: &'a mut impl ParseCache<VbNetLanguage>,
) -> ParseOutput<'a, VbNetLanguage>
fn parse<'a, S: Source + ?Sized>( &self, text: &'a S, edits: &[TextEdit], cache: &'a mut impl ParseCache<VbNetLanguage>, ) -> ParseOutput<'a, VbNetLanguage>
The core parsing entry point for converting tokens into a syntax tree. Read more
Auto Trait Implementations§
impl<'config> Freeze for VbNetParser<'config>
impl<'config> RefUnwindSafe for VbNetParser<'config>
impl<'config> Send for VbNetParser<'config>
impl<'config> Sync for VbNetParser<'config>
impl<'config> Unpin for VbNetParser<'config>
impl<'config> UnsafeUnpin for VbNetParser<'config>
impl<'config> UnwindSafe for VbNetParser<'config>
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