29 lines
1.0 KiB
Rust
29 lines
1.0 KiB
Rust
|
|
use crate::parser::{NyashParser, ParseError};
|
||
|
|
use crate::parser::common::ParserUtils;
|
||
|
|
use crate::tokenizer::TokenType;
|
||
|
|
use crate::ast::{ASTNode, Span};
|
||
|
|
|
||
|
|
#[inline]
|
||
|
|
fn is_sugar_enabled() -> bool { crate::parser::sugar_gate::is_enabled() }
|
||
|
|
|
||
|
|
impl NyashParser {
|
||
|
|
pub(crate) fn expr_parse_range(&mut self) -> Result<ASTNode, ParseError> {
|
||
|
|
let mut expr = self.expr_parse_term()?;
|
||
|
|
while self.match_token(&TokenType::RANGE) {
|
||
|
|
if !is_sugar_enabled() {
|
||
|
|
let line = self.current_token().line;
|
||
|
|
return Err(ParseError::UnexpectedToken {
|
||
|
|
found: self.current_token().token_type.clone(),
|
||
|
|
expected: "enable NYASH_SYNTAX_SUGAR_LEVEL=basic|full for '..'".to_string(),
|
||
|
|
line,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
self.advance();
|
||
|
|
let rhs = self.expr_parse_term()?;
|
||
|
|
expr = ASTNode::FunctionCall { name: "Range".to_string(), arguments: vec![expr, rhs], span: Span::unknown() };
|
||
|
|
}
|
||
|
|
Ok(expr)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|