luaur_ast/records/ast_stat_local_function.rs
1#[repr(C)]
2#[derive(Debug)]
3pub struct AstStatLocalFunction {
4 pub base: crate::records::ast_stat::AstStat,
5 pub name: *mut crate::records::ast_local::AstLocal,
6 pub func: *mut crate::records::ast_expr_function::AstExprFunction,
7 pub is_const: bool,
8}
9
10impl crate::rtti::AstNodeClass for AstStatLocalFunction {
11 const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstStatLocalFunction");
12}