···1use super::DELIMITERS;
2use crate::types::Token;
30004pub fn collect_arguments(tokens: &[Token]) -> Option<(Vec<String>, usize)> {
5 // Returns arguments vec and number of tokens to be consumed
6 //let mut output = Vec::new();
···1use super::DELIMITERS;
2use crate::types::Token;
34+//TODO: Theres a couple functions that are still written like tokens are strings not chars, they work fine
5+// for now but they may need to be changed later
6+7pub fn collect_arguments(tokens: &[Token]) -> Option<(Vec<String>, usize)> {
8 // Returns arguments vec and number of tokens to be consumed
9 //let mut output = Vec::new();