Struct cl_lexer::Lexer

source ·
pub struct Lexer<'t> { /* private fields */ }
Expand description

The Lexer iterates over the characters in a body of text, searching for Tokens.

§Examples

// Read in your code from somewhere
let some_code = "
fn main () {
    // TODO: code goes here!
}
";
// Create a lexer over your code
let mut lexer = Lexer::new(some_code);
// Scan for a single token
let first_token = lexer.scan()?;
println!("{first_token:?}");
// Loop over all the rest of the tokens
for token in lexer {
    match token {
        Ok(token) => println!("{token:?}"),
        Err(e) => eprintln!("{e:?}"),
    }
}

Implementations§

source§

impl<'t> Lexer<'t>

source

pub fn new(text: &'t str) -> Self

Creates a new Lexer over a str

source

pub fn scan(&mut self) -> LResult<Token>

Scans through the text, searching for the next [Token]

source

pub fn line(&self) -> u32

Returns the current line

source

pub fn col(&self) -> u32

Returns the current column

Trait Implementations§

source§

impl<'t> Clone for Lexer<'t>

source§

fn clone(&self) -> Lexer<'t>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'t> Debug for Lexer<'t>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'t> From<&Lexer<'t>> for Loc

source§

fn from(value: &Lexer<'t>) -> Self

Converts to this type from the input type.
source§

impl<'t> IntoIterator for Lexer<'t>

§

type Item = Result<Token, Error>

The type of the elements being iterated over.
§

type IntoIter = LexerIter<'t>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'t> Freeze for Lexer<'t>

§

impl<'t> RefUnwindSafe for Lexer<'t>

§

impl<'t> Send for Lexer<'t>

§

impl<'t> Sync for Lexer<'t>

§

impl<'t> Unpin for Lexer<'t>

§

impl<'t> UnwindSafe for Lexer<'t>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.