Skip to main content

luaur_ast/methods/
parser_function_function.rs

1use crate::records::function::Function;
2
3impl Function {
4    pub fn new() -> Self {
5        Self {
6            vararg: false,
7            loop_depth: 0,
8        }
9    }
10}
11
12#[allow(non_snake_case)]
13pub fn parser_function_function() -> Function {
14    Function::new()
15}