diff --git a/src/parse/parse.rs b/src/parse/parse.rs index 0deb14d..3003bf4 100644 --- a/src/parse/parse.rs +++ b/src/parse/parse.rs @@ -31,3 +31,9 @@ pub fn parse_var_declaration(mut tokens: Lexer) -> Option { } tok } + +pub fn parse_fun_call(mut tokens: Lexer) -> Option { + // Is it an Ident? -> Is it a LeftParen? -> Is it a value (I should really make a function to parse that) or is it a RightParen? + // ↓ ↓ + // If it's a value, push that to `params`. Otherwise, params will just be a `Vec::new()`. +}