pub struct DimArrayISpan {
pub name: SymbolKey,
pub name_pos: LineCol,
pub shared: bool,
pub dimensions: usize,
pub subtype: ExprType,
pub subtype_pos: LineCol,
}Expand description
Components of an array definition.
Fields§
§name: SymbolKeyName of the array to define.
name_pos: LineColPosition of the name.
Whether the array is global or not.
dimensions: usizeNumber of values in the stack representing the dimensions of the array.
subtype: ExprTypeType of the array to be defined.
subtype_pos: LineColPosition of the subtype.