pull/7/head
ondra05 2022-04-12 22:15:53 +02:00
parent 95ecbdf4ce
commit 8234a9d9fe
3 changed files with 2 additions and 4 deletions

View File

@ -17,7 +17,6 @@
//! [`interpret_with_output`]: Interpreter::interpret_with_output
#![deny(missing_docs)]
// Putting this here because we still don't use the entire capabilities of this module. ~~Alex
#![allow(dead_code)]

View File

@ -2,12 +2,11 @@
//!
//! Type of this parser is recursive descent
use logos::{Lexer, Logos};
use crate::ast::*;
use crate::error::{Error, ErrorKind};
use crate::lexer::Token;
use crate::variables::Value;
use logos::{Lexer, Logos};
/// Parser structure which holds lexer and metadata
///

View File

@ -605,8 +605,8 @@ impl ops::Sub for Value {
b.call(
&args
.iter()
.cloned()
.take(resulting_arity)
.cloned()
.chain(std::iter::repeat_with(|| ValueRef::new(Value::Nul)))
.take(arity)
.collect::<Vec<_>>(),