luaur-ast 0.1.0

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[repr(C)]
#[derive(Debug, Clone)]
pub struct CstExprInterpString {
    pub base: crate::records::cst_node::CstNode,
    pub source_strings:
        crate::records::ast_array::AstArray<crate::records::ast_array::AstArray<i8>>,
    pub string_positions: crate::records::ast_array::AstArray<crate::records::position::Position>,
}

impl crate::rtti::CstNodeClass for CstExprInterpString {
    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("CstExprInterpString");
}