Skip to main content

luaur_ast/records/
ast_expr_interp_string.rs

1#[repr(C)]
2#[derive(Debug)]
3#[allow(non_camel_case_types)]
4pub struct AstExprInterpString {
5    pub base: crate::records::ast_expr::AstExpr,
6    pub strings:
7        crate::records::ast_array::AstArray<crate::records::ast_array::AstArray<core::ffi::c_char>>,
8    pub expressions: crate::records::ast_array::AstArray<*mut crate::records::ast_expr::AstExpr>,
9}
10
11impl crate::rtti::AstNodeClass for AstExprInterpString {
12    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstExprInterpString");
13}