syn_solidity/stmt/
continue.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use crate::Spanned;
use proc_macro2::Span;
use std::fmt;
use syn::{
    parse::{Parse, ParseStream},
    Result, Token,
};

/// A continue statement: `continue;`.
///
/// Solidity Reference:
/// <https://docs.soliditylang.org/en/latest/grammar.html#a4.SolidityParser.continueStatement>
#[derive(Clone)]
pub struct StmtContinue {
    pub continue_token: Token![continue],
    pub semi_token: Token![;],
}

impl fmt::Debug for StmtContinue {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("StmtContinue").finish()
    }
}

impl Parse for StmtContinue {
    fn parse(input: ParseStream<'_>) -> Result<Self> {
        Ok(Self { continue_token: input.parse()?, semi_token: input.parse()? })
    }
}

impl Spanned for StmtContinue {
    fn span(&self) -> Span {
        let span = self.continue_token.span;
        span.join(self.semi_token.span).unwrap_or(span)
    }

    fn set_span(&mut self, span: Span) {
        self.continue_token.span = span;
        self.semi_token.span = span;
    }
}