Skip to main content

luaur_ast/records/
cst_expr_op.rs

1use crate::records::cst_node::CstNode;
2use crate::records::position::Position;
3
4#[repr(C)]
5#[derive(Debug, Clone)]
6pub struct CstExprOp {
7    pub base: CstNode,
8    pub op_position: Position,
9}
10
11impl crate::rtti::CstNodeClass for CstExprOp {
12    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("CstExprOp");
13}