about summary refs log tree commit diff
path: root/pkg/lang/vm/mem/cell.go
blob: 044a45cbe4fe32ccc2761f8e5597b79e5c949ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package mem

type CellKind int

const (
	CellKindEmpty CellKind = iota
	CellKindString
	CellKindArray
	CellKindEscaped
)

type cell struct {
	kind CellKind
	refs int
	data any
}