Struct full_moon::ast::NumericFor

source ·
pub struct NumericFor { /* private fields */ }
Expand description

A numeric for loop, such as for index = 1, 10 do end

Implementations§

source§

impl NumericFor

source

pub fn new( index_variable: TokenReference, start: Expression, end: Expression ) -> Self

Creates a new NumericFor from the given index variable, start, and end expressions

source

pub fn for_token(&self) -> &TokenReference

The for token

source

pub fn index_variable(&self) -> &TokenReference

The index identity, index in the initial example

source

pub fn equal_token(&self) -> &TokenReference

The = token

source

pub fn start(&self) -> &Expression

The starting point, 1 in the initial example

source

pub fn start_end_comma(&self) -> &TokenReference

The comma in between the starting point and end point for _ = 1, 10 do ^

source

pub fn end(&self) -> &Expression

The ending point, 10 in the initial example

source

pub fn end_step_comma(&self) -> Option<&TokenReference>

The comma in between the ending point and limit, if one exists for _ = 0, 10, 2 do ^

source

pub fn step(&self) -> Option<&Expression>

The step if one exists, 2 in for index = 0, 10, 2 do end

source

pub fn do_token(&self) -> &TokenReference

The do token

source

pub fn block(&self) -> &Block

The code inside the for loop

source

pub fn end_token(&self) -> &TokenReference

The end token

source

pub fn type_specifier(&self) -> Option<&TypeSpecifier>

Available on crate feature roblox only.

The type specifiers of the index variable for i: number = 1, 10 do returns: Some(TypeSpecifier(number)) Only available when the “roblox” feature flag is enabled.

source

pub fn with_for_token(self, for_token: TokenReference) -> Self

Returns a new NumericFor with the given for token

source

pub fn with_index_variable(self, index_variable: TokenReference) -> Self

Returns a new NumericFor with the given index variable

source

pub fn with_equal_token(self, equal_token: TokenReference) -> Self

Returns a new NumericFor with the given = token

source

pub fn with_start(self, start: Expression) -> Self

Returns a new NumericFor with the given start expression

source

pub fn with_start_end_comma(self, start_end_comma: TokenReference) -> Self

Returns a new NumericFor with the given comma between the start and end expressions

source

pub fn with_end(self, end: Expression) -> Self

Returns a new NumericFor with the given end expression

source

pub fn with_end_step_comma(self, end_step_comma: Option<TokenReference>) -> Self

Returns a new NumericFor with the given comma between the end and the step expressions

source

pub fn with_step(self, step: Option<Expression>) -> Self

Returns a new NumericFor with the given step expression

source

pub fn with_do_token(self, do_token: TokenReference) -> Self

Returns a new NumericFor with the given do token

source

pub fn with_block(self, block: Block) -> Self

Returns a new NumericFor with the given block

source

pub fn with_end_token(self, end_token: TokenReference) -> Self

Returns a new NumericFor with the given end token

source

pub fn with_type_specifier(self, type_specifier: Option<TypeSpecifier>) -> Self

Available on crate feature roblox only.

Returns a new NumericFor with the given type specifiers Only available when the “roblox” feature flag is enabled.

Trait Implementations§

source§

impl Clone for NumericFor

source§

fn clone(&self) -> NumericFor

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 Debug for NumericFor

source§

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

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

impl<'de> Deserialize<'de> for NumericFor

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for NumericFor

source§

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

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

impl Node for NumericFor

source§

fn start_position(&self) -> Option<Position>

The start position of a node. None if can’t be determined
source§

fn end_position(&self) -> Option<Position>

The end position of a node. None if it can’t be determined
source§

fn similar(&self, other: &Self) -> bool

Whether another node of the same type is the same as this one semantically, ignoring position
source§

fn tokens<'a>(&'a self) -> Tokens<'a>

The token references that comprise a node
source§

fn range(&self) -> Option<(Position, Position)>

The full range of a node, if it has both start and end positions
source§

fn surrounding_trivia(&self) -> (Vec<&Token>, Vec<&Token>)

The tokens surrounding a node that are ignored and not accessible through the node’s own accessors. Use this if you want to get surrounding comments or whitespace. Returns a tuple of the leading and trailing trivia.
source§

impl PartialEq for NumericFor

source§

fn eq(&self, other: &NumericFor) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for NumericFor

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for NumericFor

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,